Skip to content
Snippets Groups Projects
Oberon.o 98 B
MODULE HelloWorld;

IMPORT Out;

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