mirror of
https://github.com/anoma/juvix.git
synced 2025-01-08 16:51:53 +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; |