mirror of
https://github.com/anoma/juvix.git
synced 2024-12-19 04:41:36 +03:00
10 lines
120 B
Plaintext
10 lines
120 B
Plaintext
-- HelloWorld.juvix
|
|
module HelloWorld;
|
|
|
|
open import Stdlib.Prelude;
|
|
|
|
main : IO;
|
|
main ≔ putStrLn "hello world!";
|
|
|
|
end;
|