oberonbyexample/hello-world/Console/Hello.Mod
2017-06-01 18:45:00 +04:00

10 lines
96 B
Modula-2

MODULE hello;
IMPORT Console;
BEGIN
Console.String("Hello World!");
Console.Ln
END hello.