9 lines
135 B
Text
9 lines
135 B
Text
MODULE Goodbye;
|
|
IMPORT Out;
|
|
PROCEDURE World*;
|
|
BEGIN
|
|
Out.String("Hello world!");Out.Ln
|
|
END World;
|
|
BEGIN
|
|
World;
|
|
END Goodbye.
|