stoppause.f90   [plain text]


! Program to check the STOP and PAUSE intrinsics
program stoppause

  pause
  pause 1
  pause 'Hello world'
  stop
  stop 42
  stop 'Go away'
end program