Oberon    up
  similar languages: Modula   Obliq   Leda   Pascal   Phantom   PL/0   PL/0E   YAFL  
 


 Hello World   Michael Neumann
MODULE HelloWorld;

IMPORT Out;

BEGIN
   Out.Open;
   Out.String('Hello World');
END HelloWorld.
Prints "Hello World" onto the screen.