EXIT (The GNU Fortran Compiler) (original) (raw)

program test_exit integer :: STATUS = 0 print *, 'This program is going to exit.' call EXIT(STATUS) end program test_exit