precedence levels

master
Rachel Lambda Samuelsson 2023-01-25 21:38:45 +01:00
parent 7fcd27aafd
commit 4d940fb59b
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))