1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-15 10:03:22 +03:00
juvix/tests/positive/Builtins.juvix

10 lines
197 B
Plaintext
Raw Normal View History

module Builtins;
open import Stdlib.Prelude;
f : String -> IO;
f s := printStringLn (natToString (stringToNat "290" + 3) ++str natToString 7 ++str s);
main : IO;
main := readLn f;
end;