misc cleanup

This commit is contained in:
2024-10-30 21:22:45 -07:00
parent e6502abeed
commit 56e005d2dc
6 changed files with 18 additions and 31 deletions

View File

@@ -37,6 +37,7 @@ pure {_} {_} {{MkMonad _ pure'}} a = pure' a
infixl 1 _>>=_ _>>_
_>>_ : {a b : U} -> {m : U -> U} -> {{x : Monad m}} -> m a -> m b -> m b
ma >> mb = mb
ptype Int
@@ -50,5 +51,4 @@ bar : Int -> Maybe Int
bar x = do
let y = x
z <- Just x
-- This is not sorting out the Maybe...
pure z