9 lines
98 B
Plaintext
Raw Normal View History

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