mirror of
https://github.com/anoma/juvix.git
synced 2024-12-02 23:43:01 +03:00
12 lines
139 B
Plaintext
12 lines
139 B
Plaintext
module InfixErrorP;
|
|
|
|
infix 5 , ;
|
|
|
|
inductive Pair {
|
|
, : Type → Type → Pair
|
|
};
|
|
|
|
fst : Pair → Type;
|
|
fst (x , ) ≔ x;
|
|
|
|
end; |