mirror of
https://github.com/anoma/juvix.git
synced 2025-01-08 16:51:53 +03:00
3fbc9c7c55
Closes #1644 #1635
10 lines
90 B
Plaintext
10 lines
90 B
Plaintext
module Inductive;
|
|
|
|
type A (B : Type) :=
|
|
a : A B;
|
|
|
|
main : Type -> Type;
|
|
main := A;
|
|
|
|
end;
|