RosettaCodeData/Task/Hello-world-Text/Oberon/hello-world-text.oberon
2023-07-01 13:44:08 -04: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.