blob: 8c2616d1de289dc482d0b116ffa7d2e706bac8a8 [file] [log] [blame] [raw]
MODULE PrintHelloWorld;
(*This program prints "Hello world!" on the standard output device*)
FROM InOut IMPORT WriteString, WriteLn;
BEGIN
WriteString('Hello world!');
WriteLn;
END PrintHelloWorld.