<div dir="ltr">Hello all,<br><br>I've been reading through "Tackling the Awkward Squad" [1] and am implementing the definitions "left as exercises" as I go. For section 2.2, I define:<br><br>    putLine :: [Char] -> IO ()<br>    putLine :: mapM_ putChar<br><br>where<br><br>    mapM_ :: Monad m => (a -> m b) -> a -> m ()<br>    mapM_ f [] = return ()<br>    mapM_ f (x:xs) = (f x) >> (mapM_ f xs)<br><br>which works without difficulty. For the sake of learning, I decided to implement mapM as well. My definition (below) works, but seems really in-elegant. I checked the prelude source and found mapM defined in terms of sequence, which has some do-notation I'm not so clear on. I'm trying to avoid using do notation in my implementation because it still feels like magic. I'll work on de-sugaring do notation again once I have a solid handle on (>>=), (>>), and return. Any suggestions for cleaning this up would be much appreciated!<br><br>    mapM :: Monad m => (a -> m b) -> [a] -> m [b]<br>    mapM f [] = return []<br>    mapM f (x:xs) = consMM (f x) (mapM f xs)<br><br>    consMM :: Monad m => m a -> m [a] -> m [a]<br>    consMM mx mxs = mx >>= ((flip consM)  mxs) where<br>        consM x mxs = mxs>>=(\xs -> return (x:xs))<br><br>Thank you,<br>vale<br><br>[1] Suggested by apfelmus in a recent email to the list:<br><a href="http://research.microsoft.com/en-us/um/people/simonpj/papers/marktoberdorf/">http://research.microsoft.com/en-us/um/people/simonpj/papers/marktoberdorf/</a><br></div>