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

8 lines
99 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
MODULE Hello;
IMPORT InOut;
BEGIN
2015-11-18 06:14:39 +00:00
InOut.WriteString('Hello world!');
2013-04-10 21:29:02 -07:00
InOut.WriteLn
END Hello.