RosettaCodeData/Task/Hello-world-Text/Modula-2/hello-world-text.mod2

8 lines
99 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
MODULE Hello;
IMPORT InOut;
BEGIN
InOut.WriteString('Hello world!');
InOut.WriteLn
END Hello.