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