mirror of
https://github.com/anoma/juvix.git
synced 2024-12-15 01:52:11 +03:00
22 lines
199 B
Plaintext
22 lines
199 B
Plaintext
module M;
|
|
|
|
module O;
|
|
axiom A : Type;
|
|
end;
|
|
|
|
open O;
|
|
|
|
module N;
|
|
module O;
|
|
inductive T {
|
|
A : T;
|
|
};
|
|
end;
|
|
end;
|
|
|
|
open N.O;
|
|
|
|
fun : T → T;
|
|
fun A ≔ T;
|
|
end;
|