DEBSOURCES
Skip Quicknav
sources / lfortran / 0.60.0-2 / integration_tests / types_18.f90
1234567891011
program types_18 type(real(kind=4)) :: x x = 3.14 print *, x if (abs(x - 3.14) > 1e-12) error stop end program