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

9 lines
98 B
Plaintext

MODULE HelloWorld;
IMPORT Out;
BEGIN
Out.Open;
Out.String('Hello World');
END HelloWorld.