What's a good beginning text on functional programming? - Stack Overflow most recent 30 from stackoverflow.com2009-12-18T17:32:06Zhttp://stackoverflow.com/feeds/question/23166http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming19What's a good beginning text on functional programming?OwenP2008-08-22T18:46:09Z2009-02-16T07:04:15Z
<p>I like to study languages outside my comfort zone, but I've had a hard time finding a place to start for functional languages. I heard a lot of good things about <a href="http://rads.stackoverflow.com/amzn/click/0070004846" rel="nofollow">Structure and Interpretations of Computer Programs</a>, but when I tried to read through it a couple of years ago it just seemed to whiz over my head. I do way better with books than web sites, but when I visit the local book store the books on LISP look kind of scary.</p>
<p>So what's a good starting point? My goal is to be able to use a functional programming language to solve simple problems in 6 months or so, and the ability to move to more advanced topics, recognize when a functional language is the right tool for the job, and use the language to solve more problems over the course of 2-3 years. I like books that are heavy on examples but also include challenges to work through. Does such a thing exist for functional languages?</p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23179#2317910Answer by mk for What's a good beginning text on functional programming?mk2008-08-22T18:52:28Z2008-08-22T18:52:28Z<p><a href="http://www.ccs.neu.edu/home/matthias/BTLS/" rel="nofollow">The Little Schemer</a> teaches recursion really well, and it's fun and simple to read. </p>
<p>I also liked <a href="http://www.scheme.com/tspl3/" rel="nofollow">The Scheme Programming Language</a> for a broader introduction into the language. </p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23184#231841Answer by Joe Shaw for What's a good beginning text on functional programming?Joe Shaw2008-08-22T18:54:53Z2008-08-22T18:54:53Z<p>I found <a href="http://rads.stackoverflow.com/amzn/click/0262560992" rel="nofollow">The Little Schemer</a> a great, great introduction to functional programming. It's entirely based on simple, bite sized examples which are built up upon as the book goes on.</p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23185#231850Answer by Pascal for What's a good beginning text on functional programming?Pascal2008-08-22T18:55:08Z2008-08-22T18:55:08Z<p>Haskell is a very good functional programming language for beginners. Someone had asked about good resources for Haskell, so I will point you <a href="http://beta.stackoverflow.com/questions/16918/beginners-guide-to-haskell#16951" rel="nofollow">there</a>.</p>
<p>If you are looking for a good book on Functional Programming, I would recommend "Functional Programming: Practice and Theory" by Bruce J. Maclennan. <br>
It is however required that you brush up on your Set Theory and Logic before giving it a read. It includes examples in LISP, Haskell and other languages.</p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23188#231880Answer by Brian Leahy for What's a good beginning text on functional programming?Brian Leahy2008-08-22T18:55:31Z2008-08-22T18:55:31Z<p>If you have experience with .NET, <a href="http://www.apress.com/book/view/9781590598504" rel="nofollow">Expert #F</a> is good.</p>
<p>F# is derived from OCaml. Lisp is more pure as functional languages go.</p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23193#231933Answer by nlucaroni for What's a good beginning text on functional programming?nlucaroni2008-08-22T18:56:54Z2008-08-22T19:08:40Z<p>SICP is a great book, but it is difficult when you don't know the Lagrange (as I recall). </p>
<p>This is probably my bias, but I thought ocaml was pretty easy to get into. You have the option of programming in a few different styles until you're completely comfortable. Along those lines, I'd recommend python as well. Though, ocaml will get you closer to the syntax of Haskell, and similar functional languages. F# is another option, I've looked at the code and I can never tell if it is ocaml or not --the comments are a dead giveaway, if present.</p>
<p>I <a href="http://beta.stackoverflow.com/questions/22873/language-referencestutorials-for-popular-languages#22940" rel="nofollow">posted a bunch of links</a> to Haskell and Ocaml references that <em>are</em> books, with examples et cetera that seem right up your alley.</p>
<p>If you prefer Lisp, you can try to power through the <a href="http://www.ic.unicamp.br/~meidanis/courses/mc336/2006s2/funcional/L-99_Ninety-Nine_Lisp_Problems.html" rel="nofollow">99-problems in Lisp</a>(which you can do in any language, really), or you can watch the <a href="http://video.google.com/videoplay?docid=5546836985338782440" rel="nofollow">lectures</a> from the people who wrote SICP.</p>
<p>Further down the road, get a hold of "<a href="http://books.google.com/books?id=SxPzSTcTalAC&dq=purely+functional+data+structures" rel="nofollow">Purely Functional Data Structures</a>", as it'll get into the hard-core deep design and considerations you have to take into account in functional languages --it uses ML (which ocaml derived from).</p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23198#231980Answer by Craig H for What's a good beginning text on functional programming?Craig H2008-08-22T18:58:47Z2008-08-22T18:58:47Z<p>I have heard good things about <a href="http://rads.stackoverflow.com/amzn/click/0201342758" rel="nofollow">Haskell Functional Programming</a>, but I also found this <a href="http://www.amazon.com/LISP-Functional-Programming-Books/lm/36GEU8N3B2JPW" rel="nofollow">list</a> of functional programming books at amazon that might be helpful to you.</p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23203#232031Answer by Konrad Rudolph for What's a good beginning text on functional programming?Konrad Rudolph2008-08-22T19:00:50Z2008-08-22T19:00:50Z<p>I really like Thompson’s “Haskell: The Craft of Functional Programming” because it’s well written and Haskell allows an easier start than other functional languages while being completely pure (unlike Lisp or Scheme).</p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23269#232693Answer by JordanG for What's a good beginning text on functional programming?JordanG2008-08-22T19:27:18Z2008-08-22T19:27:18Z<p>Since there are a bunch of different functional programming languages, it's hard to recommend books. But if you're interested in Common Lisp, recently I've been reading <a href="http://rads.stackoverflow.com/amzn/click/1590592395" rel="nofollow">"Practical Common Lisp"</a> by Peter Seibel, which you can <a href="http://gigamonkeys.com/book/" rel="nofollow">check out online for free</a> before dropping your hard earned cash on it. It's a pretty gentle introduction to CL, with great explanations and tons of examples. Seibel's a great writer (example: read <a href="http://gigamonkeys.com/book/macros-defining-your-own.html" rel="nofollow">the story of Mac</a>,) he's good at keeping you engaged, which is really where SICP falls down, I think. It's just so dry! But while Practical Common Lisp is pretty example-heavy, it doesn't really have challenges to work through, although the examples are mostly designed to let you continue to work and build on them.</p>
<p>Another good book, this one Scheme-oriented: <a href="http://rads.stackoverflow.com/amzn/click/0262062186" rel="nofollow">How to Design Programs</a>. (<a href="http://www.htdp.org/2003-09-26/" rel="nofollow">Online</a>)
I haven't had as much time with this book, being more of a Lisper than a Schemer myself, but it's well written, has good explanations and examples, and has lots of exercises to work on. It seems pretty popular in the Scheme crowd.</p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23273#232733Answer by Chris Conway for What's a good beginning text on functional programming?Chris Conway2008-08-22T19:28:49Z2008-08-22T19:28:49Z<p>I learned from Jeffrey Ullman's <em>Elements of ML Programming</em>, which is pretty good. It loses points for being about Standard ML, when OCaml, F#, and Haskell are (seemingly) more popular.</p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/23828#238289Answer by John for What's a good beginning text on functional programming?John2008-08-23T01:29:15Z2008-08-23T01:29:15Z<p>Try <a href="http://book.realworldhaskell.org/beta/index.html" rel="nofollow">Real World Haskell</a>. It's free online.</p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/62464#624641Answer by Ray for What's a good beginning text on functional programming?Ray2008-09-15T12:46:20Z2008-09-15T12:46:20Z<p>The Schemers Guide and related software - seriously good stuff</p>
<p><a href="http://www.schemers.com/tsg.html" rel="nofollow">http://www.schemers.com/tsg.html</a></p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/196160#1961601Answer by Stephen for What's a good beginning text on functional programming?Stephen2008-10-12T21:42:17Z2008-10-12T21:42:17Z<p>I feel <em>Purely Functional Data Structures</em> by Chris Okasaki is worth a look.</p>
<p>FYI <a href="http://www.cs.cmu.edu/~rwh/theses/okasaki.pdf" rel="nofollow">http://www.cs.cmu.edu/~rwh/theses/okasaki.pdf</a></p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/344119#3441193Answer by thecivil for What's a good beginning text on functional programming?thecivil2008-12-05T15:15:05Z2008-12-05T15:15:05Z<p>I really recommend "On Lisp" from Paul Graham. </p>
<p>It is concise and very readable even for beginners in functional programming (as I was when I read it). It contains a lot of very short examples, each which helps to understand one single thing. </p>
<p>I often thought reading this book: this is just the language containing exactly the features I ever wanted in other (nonfunctional) languages, but never got. :-(
And this is exactly the book to learn it, always comprehensible, sometimes even funny!</p>
<p>You may get it for free at <a href="http://www.paulgraham.com/onlisp.html" rel="nofollow">the author's site</a>!</p>
http://stackoverflow.com/questions/23166/whats-a-good-beginning-text-on-functional-programming/552452#5524520Answer by amit.dev for What's a good beginning text on functional programming?amit.dev2009-02-16T07:04:15Z2009-02-16T07:04:15Z<p>Check out <a href="http://rads.stackoverflow.com/amzn/click/0134843460" rel="nofollow">Introduction to functional programming</a>. It offers a different perspective.</p>