9 lines
98 B
Plaintext
Executable File
9 lines
98 B
Plaintext
Executable File
MODULE HelloWorld;
|
|
|
|
IMPORT Out;
|
|
|
|
BEGIN
|
|
Out.Open;
|
|
Out.String('Hello World');
|
|
END HelloWorld.
|