Cleanup and a fix to Prelude and the playground

This commit is contained in:
2025-01-23 21:10:42 -08:00
parent 20e6571986
commit bc71c006e9
7 changed files with 1067 additions and 131 deletions

View File

@@ -472,7 +472,7 @@ foldr f b Nil = b
foldr f b (x :: xs) = f x (foldr f b xs)
infixl 9 _∘_
_∘_ : {A B C : U} -> (B -> C) -> (A -> B) -> A -> C
_∘_ : A B C. (B -> C) -> (A -> B) -> A -> C
(f g) x = f (g x)