(* The Great Win32 Language Shootout http://dada.perl.it/shootout/
contributed by Isaac Gouy (Modula2 novice)
To build: xc =m hello
To run: hello
*)
MODULE Hello;
FROM STextIO IMPORT WriteString, WriteLn;
BEGIN
WriteString ("hello world"); WriteLn;
END Hello.