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

8 lines
115 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
MODULE Stderr EXPORTS Main;
IMPORT Wr, Stdio;
BEGIN
Wr.PutText(Stdio.stderr, "Goodbye, World!\n");
END Stderr.