3 lines
103 B
Text
3 lines
103 B
Text
|
definition nat.add : nat → nat → nat :=
|
||
|
λ (a b : nat), nat.rec_on b a (λ (b₁ : nat), nat.succ)
|