mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 12:45:39 +01:00
5 lines
102 B
Text
5 lines
102 B
Text
MODULE HelloWorld EXPORTS Main;
|
|
FROM IO IMPORT Put;
|
|
BEGIN
|
|
Put("Hello World\n")
|
|
END HelloWorld.
|