RosettaCodeData/Task/Hello-world-Standard-error/Fortran/hello-world-standard-error.f
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

9 lines
207 B
Fortran

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