mirror of
https://github.com/anoma/juvix.git
synced 2024-12-04 06:23:13 +03:00
13 lines
204 B
Plaintext
13 lines
204 B
Plaintext
module Builtins;
|
|
|
|
import Stdlib.Prelude open;
|
|
|
|
f : String -> IO
|
|
| s :=
|
|
printStringLn
|
|
(natToString (stringToNat "290" + 3)
|
|
++str natToString 7
|
|
++str s);
|
|
|
|
main : IO := readLn f;
|