Compare commits

...

2 Commits

1 changed files with 0 additions and 1 deletions

View File

@ -6,7 +6,6 @@ type Nat
-- which will bring a recursor for the type into scope
-- rec[Nat] : A → (A → A) → Nat → A
-- defining addition as
add : Nat → Nat → Nat
:= rec[Nat] (λx. x) (λf n. succ (f n))