7 lines
89 B
Text
7 lines
89 B
Text
MODULE Goodbye EXPORTS Main;
|
|
|
|
IMPORT IO;
|
|
|
|
BEGIN
|
|
IO.Put("Hello world!\n");
|
|
END Goodbye.
|