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


 Hello World   Michael Neumann
PROGRAM HelloWorld;

BEGIN
   WRITELN('Hello World');
END.
Prints "Hello World" onto the screen.


 Hello World   ISO-7185   Andreas K. Foerster
PROGRAM HelloWorld (OUTPUT);

BEGIN
   WRITELN('Hello World');
END.
Prints "Hello World" onto the screen.