1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-08 16:51:53 +03:00
juvix/tests/Internal/positive/Inductive.juvix

10 lines
90 B
Plaintext

module Inductive;
type A (B : Type) :=
a : A B;
main : Type -> Type;
main := A;
end;