2018-08-22 01:37:32 -03:00

9 lines
98 B
Plaintext
Executable File

MODULE HelloWorld;
IMPORT Out;
BEGIN
Out.Open;
Out.String('Hello World');
END HelloWorld.