DEBSOURCES
Skip Quicknav
sources / lfortran / 0.45.0-1 / integration_tests / max_01.f90
1234567
program max_01 real(8) :: y real :: z y = 5.2d0 z = 9.0 print *, max(y, z) end program