mirror of
https://github.com/anoma/juvix.git
synced 2024-12-15 01:52:11 +03:00
16 lines
212 B
Plaintext
16 lines
212 B
Plaintext
module A;
|
|
module M;
|
|
module N;
|
|
infix 3 t;
|
|
inductive T {
|
|
t : T;
|
|
};
|
|
end ;
|
|
infix 2 +;
|
|
axiom + : Type → Type → Type;
|
|
end ;
|
|
import M;
|
|
f : M.N.T;
|
|
f (_ M.N.t _) ≔ Type M.+ Type;
|
|
end;
|