RosettaCodeData/Task/Hello-world-Text/Oberon-2/hello-world-text.oberon-2
2015-11-18 06:14:39 +00:00

9 lines
135 B
Text

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