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

9 lines
112 B
Plaintext

MODULE Hello;
IMPORT Out;
PROCEDURE Do*;
BEGIN
Out.String("Goodbye, World!"); Out.Ln
END Do;
END Hello.