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