mirror of
https://github.com/vishapoberon/oberonbyexample.git
synced 2026-04-05 21:02:25 +00:00
10 lines
102 B
Modula-2
10 lines
102 B
Modula-2
MODULE hello;
|
|
|
|
|
|
IMPORT Console;
|
|
|
|
|
|
BEGIN
|
|
Console.String("Hello World!");
|
|
Console.Ln
|
|
END hello.
|