Files
hello-world/o/oberon-2.obn
2010-08-06 11:09:04 +08:00

6 lines
114 B
Plaintext

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