mirror of
https://github.com/anoma/juvix.git
synced 2024-12-15 01:52:11 +03:00
7 lines
112 B
Plaintext
7 lines
112 B
Plaintext
-- HelloWorld.juvix
|
|
module HelloWorld;
|
|
|
|
import Stdlib.Prelude open;
|
|
|
|
main : IO := printStringLn "hello world!";
|