RosettaCodeData/Task/Hello-world-Standard-error/COBOL/hello-world-standard-error.cobol
2023-07-01 13:44:08 -04:00

4 lines
96 B
COBOL

program-id. ehello.
procedure division.
display "Goodbye, world!" upon syserr.
stop run.