DEBSOURCES
Skip Quicknav
sources / lfortran / 0.60.0-2 / integration_tests / abs_01.f90
12345678910
program abs_01 implicit none real :: x x = abs(1.5) print *, x if (x < 0) error stop x = abs(-1.5) print *, x if (x < 0) error stop end program