DEBSOURCES
Skip Quicknav
sources / lfortran / 0.60.0-1 / integration_tests / stop_01.f90
1234567891011121314151617
program stop_01 implicit none integer :: x x = 5 print *, x x = x + 2 print *, x stop x = x + 2 print *, x end program