<div dir="ltr"><div><div><div><div><div><div><div>Do note that if you force it so that it the value needs the last element, it will be stuck in an infinite loop of request-> response loop.<br><br></div>Here's what will happen/<br><br></div>last [3,5 ..]  -- Same thing as your function<br></div>This will be forced to <br></div>last [3,5, 7 ..]<br></div>which will be forced till it terminates (which is never).  So, be careful with that.  However, things like this are perfectly fine.<br><br></div>head [3,5 ..] yields 3<br></div>takeWhile (<10) [3,5 ..] yields [3,5,7,9]<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Mon, Aug 17, 2015 at 12:05 PM, akash g <span dir="ltr"><<a href="mailto:akaberto@gmail.com" target="_blank">akaberto@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div>Not a problem.  And I should have thought about what you wanted  too.  <br><br>This version will give  you an infinite list of odd numbers from 3.<br><br></div></div><div class="gmail_extra"><br><div class="gmail_quote"><div><div class="h5">On Mon, Aug 17, 2015 at 12:02 PM, Debdut Karmakar <span dir="ltr"><<a href="mailto:debdutk@gnulinuxed.tk" target="_blank">debdutk@gnulinuxed.tk</a>></span> wrote:<br></div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div><div class="h5"><u></u>
<div>
<p>Sorry, I wrote a wrong function, the correct version is:</p>
<p>oddsFrom3 :: [Integer]<br> oddsFrom3 = 3 : map (+2) oddsFrom3</p><span><font color="#888888">
<div>-- <br>
<p><span style="font-family:andale mono,times;font-size:medium">A<strong><a href="http://gnu.org" target="_blank"> GNU</a> <a href="http://www.linuxfoundation.org/" target="_blank">Linux</a></strong> Patron</span></p>
</div>
</font></span></div>
<br></div></div><span class="">_______________________________________________<br>
Beginners mailing list<br>
<a href="mailto:Beginners@haskell.org" target="_blank">Beginners@haskell.org</a><br>
<a href="http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners" rel="noreferrer" target="_blank">http://mail.haskell.org/cgi-bin/mailman/listinfo/beginners</a><br>
<br></span></blockquote></div><br></div>
</blockquote></div><br></div>