Files
hello-world/o/oberon-2.obn
2018-08-22 01:37:32 -03:00

6 lines
114 B
Plaintext
Executable File

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