RosettaCodeData/Task/Hello-world-Standard-error/Fortran/hello-world-standard-error.f

10 lines
207 B
FortranFixed
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
program StdErr
! Fortran 2003
use iso_fortran_env
! in case there's no module iso_fortran_env ...
!integer, parameter :: ERROR_UNIT = 0
write (ERROR_UNIT, *) "Goodbye, World!"
end program StdErr