10 lines
207 B
FortranFixed
10 lines
207 B
FortranFixed
|
|
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
|