Pascal


Program Hello (Input, Output);
 
Begin
  Writeln ('Hello World!');
End.


submitted by: carmond@engr.latech.edu (Chad Armond)

...and a repeating version:

program Hello_World;
Begin
        repeat
                writeln('Hello World!')
        until 1=2;
End.


submitted by: thomas-t@dsv.su.se (Bad News)