RosettaCodeData/Task/Hello-world-Text/Modula-3/hello-world-text.mod3

8 lines
89 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
MODULE Goodbye EXPORTS Main;
IMPORT IO;
BEGIN
IO.Put("Hello world!\n");
END Goodbye.