RosettaCodeData/Task/Hello-world-Standard-error/Modula-3/hello-world-standard-error.mod3

8 lines
115 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
MODULE Stderr EXPORTS Main;
IMPORT Wr, Stdio;
BEGIN
Wr.PutText(Stdio.stderr, "Goodbye, World!\n");
END Stderr.