<div dir="ltr">The reply I gave before might be more helpful if you consider the fact that<div><br></div><div><font face="monospace, monospace">    a >> b >> c </font></div><div><font face="monospace, monospace"><br></font></div>is equivalent to<div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">    do a</font></div><div><font face="monospace, monospace">       b</font></div><div><font face="monospace, monospace">       c</font></div><div><font face="monospace, monospace"><br></font></div>You can then use<div><br><div><font face="monospace, monospace">    forM_ [1..4] (\_ -> putStrLn "Test")</font></div></div><div><font face="monospace, monospace"><br></font></div>What this does is,<div><font face="monospace, monospace"><br></font></div><div><font face="monospace, monospace">    1. map (\_ -> putStrLn "Test") on [1..4]</font></div><div><font face="monospace, monospace">    2. Use sequence_ to combine those operations</font></div><div><font face="monospace, monospace"><br></font></div>The even shorter way is replicateM_ which works like replicate from Data.List</div><div class="gmail_extra"><br><div class="gmail_quote">On 2 May 2015 at 01:39, Marcin Mrotek <span dir="ltr"><<a href="mailto:marcin.jan.mrotek@gmail.com" target="_blank">marcin.jan.mrotek@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Ah, sorry, I forgot about replicateM_.<br>
<div class="HOEnZb"><div class="h5"><br>
Best regards,<br>
Marcin Mrotek<br>
_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners</a><br>
</div></div></blockquote></div><br><br clear="all"><div><br></div>-- <br><div class="gmail_signature"><div dir="ltr"><div><div dir="ltr"><div dir="ltr"><div>Regards</div><div dir="ltr"><div><br></div><div>Sumit Sahrawat</div></div></div></div></div></div></div>
</div>