Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/src/prelude/Prelude/ApplyM.hs
module Prelude where infixr 1 =<< (=<<) :: Monad m => (a -> m b) -> m a -> m b f =<< x = x >>= f