(root)/
gcc-13.2.0/
gcc/
testsuite/
gfortran.fortran-torture/
compile/
stoppause.f90
! Program to check the STOP and PAUSE intrinsics
program stoppause

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