sugar on binders

This commit is contained in:
2024-06-25 13:53:15 -07:00
parent 968327cdb3
commit d2fbd15b4a
2 changed files with 20 additions and 19 deletions

View File

@@ -12,7 +12,7 @@ List : U -> U
List = \ A => (L : U) -> L -> (A -> L -> L) -> L
-- need more sugar for lambdas
nil : (A : U) -> (L : U) -> L -> (A -> L -> L) -> L
nil : (A L : U) -> L -> (A -> L -> L) -> L
nil = \ A => \ L => \ n => \ f => n
Bool : U