DEBSOURCES
Skip Quicknav
sources / lfortran / 0.58.0-4 / integration_tests / abs_03.f90
12345678910
program abs_03 implicit none integer :: x x = abs(2) print *, x if (x < 0) error stop x = abs(-2) print *, x if (x < 0) error stop end program