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