Files
hello-world/o/oberon-2.obn

6 lines
114 B
Plaintext

MODULE HelloWorld;
IMPORT Out;
BEGIN
Out.String( "Hello World" );
Out.Ln;
END HelloWorld.