6 lines
114 B
Plaintext
Raw Normal View History

MODULE HelloWorld;
IMPORT Out;
BEGIN
Out.String( "Hello World" );
Out.Ln;
END HelloWorld.