Plan 9 from Bell Labs’s /usr/web/sources/contrib/fernan/nhc98/src/prelude/Prelude/MapM.hs
module Prelude where import Map import CMonad import Sequence mapM :: Monad m => (a -> m b) -> [a] -> m [b] mapM f as = sequence (map f as)