RosettaCodeData/Task/Hello-world-Text/Component-Pascal/hello-world-text.component

9 lines
109 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
MODULE Hello;
IMPORT Out;
PROCEDURE Do*;
BEGIN
2015-11-18 06:14:39 +00:00
Out.String("Hello world!"); Out.Ln
2013-04-10 21:29:02 -07:00
END Do;
END Hello.