2 lines
106 B
Text
2 lines
106 B
Text
protected definition nat.add : ℕ → ℕ → ℕ :=
|
||
λ (a : ℕ), nat.rec a (λ (b₁ : ℕ), nat.succ)
|