6 lines
114 B
Plaintext
Executable File
6 lines
114 B
Plaintext
Executable File
MODULE HelloWorld;
|
|
IMPORT Out;
|
|
BEGIN
|
|
Out.String( "Hello World" );
|
|
Out.Ln;
|
|
END HelloWorld. |