mirror of
https://github.com/anoma/juvix.git
synced 2024-12-11 08:25:46 +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;
|