MODULE HelloWorld;

FROM STextIO IMPORT WriteString, WriteLn;

BEGIN
WriteString("Hello, World!");
WriteLn;
END HelloWorld.

Comments