Kind/book/Pair.kind2
2024-03-01 20:40:31 -03:00

9 lines
176 B
Plaintext

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