Files
hello-world/o/oberon-2.obn
Robert Peters 7f878aa890 Revert "github generated gh-pages branch"
This reverts commit 97e0e510b5.
2011-03-13 20:36:14 +01:00

6 lines
114 B
Plaintext

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