1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-05 22:46:08 +03:00
juvix/tests/positive/Internal/LiteralInt.juvix

12 lines
152 B
Plaintext

module LiteralInt;
open import Stdlib.Prelude;
type A := a : A;
type B := b : B;
f : Nat;
f := 1;
main : IO;
main := printNatLn 2;
end;