Kind/book/Pair.kind2
2024-02-12 22:39:06 -03:00

10 lines
159 B
Plaintext

Pair
: ∀(A: *)
∀(B: *)
*
= λA λB
$self
∀(P: ∀(pair: (Pair A B)) *)
∀(new: ∀(fst: A) ∀(snd: B) (P (Pair.new A B fst snd)))
(P self)