vote up 23 vote down star
22

I'm looking for some ebooks that will assist in my learning of functional programming. I haven't yet decided which language I will go with, but I've noticed a fair amount of bias towards LISP, Haskell and F# amongst the community on StackOverflow. As yet, I'm unsure which direction I will take, but can anyone recommend any particular eBooks on the subject? In addition, if anyone could present a compelling argument for which functional language would be the most interesting pursue, I would be most interested to hear your opinions.

I'm particularly interested in eBooks because I managed to score myself a Sony eBook Reader for Christmas and I'm looking to load it up with useful material for my never ending quest to become a better programmer.

TIA

flag

1  
Incidentally, have you tried learning programming things while using an e-book reader before? It seems to me that I would often want to jump to a computer to try something out. On the other hand, I guess my time spent on trains would be more useful ... – A. Rex Jan 11 '09 at 4:22
Dupes: stackoverflow.com/questions/23166/… stackoverflow.com/questions/2399/… – Chris Conway Jan 11 '09 at 4:44
@A.Rex: Well, to be honest, no, I haven't. However, whilst at the office there are many times I read something online and spend forever flicking back and forth between screens. Consequently I way prefer books to onscreen as there's less tabbing between screens. My ebook reader would be the same? – BobTheBuilder Jan 11 '09 at 4:46
@Chris - Thanks for those links, they didn't show up when I searched, in particular the second one which relates to another question I just asked. – BobTheBuilder Jan 11 '09 at 4:47

17 Answers

vote up 29 vote down check

I recommend Haskell. Please check out these (online and print) book recommendations in another SO question.

Reasons in favor of Haskell:

  • From a personal perspective first: I spent a considerable amount of my early programming years thinking about designing my own programming language. (For example, I highly recommend the textbook Programming Language Pragmatics.) When I first encountered Haskell, I realized that it incorporated many of the ideas I had, plus many more, and all in ways far better than I could have done myself.
  • It's a very pure implementation of functional ideals: lazy (non-strict) and (polymorphically) statically typed. No side effects!
  • Its type system might change your view of type systems. (Hindley-Milner type inference is amazing.)
  • Its alternative view of object-oriented programming and polymorphism is great.

Lisp is also a good choice. Reasons in favor of a Lisp variant:

  • Historically the first functional programming language (or the first huge one).
  • The worldview "everything is a list" is very minimalist, simple, and beautiful.

If you do choose a Lisp variant, I recommend Scheme.

I have not used OCaml or Ruby, but some of my friends swear by them, though one could argue how functional they are. On the other hand, their "multi-paradigm" nature makes them very convenient in practice.

To conclude, I suggest you choose a language following Alan Perlis's advice: "A language that doesn't affect the way you think about programming, is not worth knowing." Lisp and Haskell both changed my world. I hope that no matter what language you choose, it changes your world.

link|flag
I don't think Haskell is a good language to start functional programming, it's very extreme, you cannot gently transition from procedural to functional code like you could in Scheme, Common Lisp, or even Ocaml. – taw Jan 11 '09 at 3:36
Point taken. However, I think it's worth the effort. – A. Rex Jan 11 '09 at 3:50
+1 for the recommendation to learn a language that affects the way we think about programming. I agree that the point in learning a new language is to affect and extend our view of programming. – BobTheBuilder Jan 11 '09 at 3:56
I love Ruby, but I'd say it's a poor choice for the functional paradigm. There's actually an active thread on the mailing list about this now – J Cooper Jan 11 '09 at 5:29
Aforementioned thread: ruby-forum.com/topic/175136 – J Cooper Jan 11 '09 at 5:35
show 4 more comments
vote up 15 vote down

I just started following the Structure and Interpretation of Computer Programs video lectures, and I think they're wonderful. They adopt Scheme, which is a variant of LISP, as the programming language. But that's not the point of the course: It is about the whole concept of "computing" and its implications.

link|flag
I second the recommend of SICP. – A. Rex Jan 11 '09 at 4:23
SICP/Scheme is great, but it does several things that go against the grain of functional programming, in particular by being untyped and encouraging a lack of distinction between code and data. It has a philosophy of its own, but it's not FP. Still, it's better than Common Lisp. is.gd/fmxu – ShreevatsaR Jan 11 '09 at 16:39
vote up 7 vote down

I'm in the the middle of reading Yet Another Haskell Tutorial and it's a very helpful and well written Haskell book.

link|flag
vote up 6 vote down

Obviously, it depends.

Are you familiar with C#, and .Net framework? If so that'll give you a kick start using F#. If you've got Visual Studio, you can play around with F# too, so that's another learning curve flattened.

It also depends whether you're just looking to 'grok' functional programming to widen your horizons, or actually use it some time. If you're just groking, then start anywhere, but if you intend to use it, then choose something which is compatible with your current framework.

My 2 cents/pence

link|flag
vote up 6 vote down

One of the best tutorials for functional programming (a friend gave me) is Learn You a Haskell for Great Good!. This tutorial is about Haskell, but the basics there are very good presented in the right order. I found it very clear.

link|flag
vote up 5 vote down

Maybe one option is to pull down the entire online version of Real World Haskell?

It's a good book for learning Haskell, but arguably it might need to be paired with a more general book on functional programming.

link|flag
vote up 4 vote down

Practical, Common Lisp is a fantastic ebook if you're interesting in diving into Lisp. It is quite different than many languages out there, but I felt like pushing myself to learn it was one of the most rewarding experiences in my programming career. The limited syntax makes for a highly flexible language that is relatively easy to learn, but conceptually it will take some time to wrap your mind around.

link|flag
vote up 4 vote down

I would recommend any of the ML (Standard ML or OCaml are good) dialects for a language.

They had a huge influence on Haskell and are a somewhat gentler introduction to FP than Haskell.

link|flag
vote up 3 vote down

I hop you chose Erlang or Lisp. (Forth) There you have the most mindbending languages I know.

Where should I go after Erlang, Lisp and Forth, please leave a comment.

link|flag
1  
You must not know Haskell. – Rayne Jan 14 '09 at 1:10
vote up 2 vote down

I might get downvoted for it but I say go for Ruby. It's a very nice and modern hybrid functional-OO language, and it will gently introduce you to the world of functional programming. Or any other language with closures and high order functions (it has to be either dynamically typed or with type inference, otherwise it's really hard to write functional code).

Once you're comfortable with Ruby FP, or if you don't want to listen to my best advice, try something like Scheme. It's an elegant and gentle language.

If you start with Common Lisp or Ocaml or Erlang or especially Haskell you will most likely get scared and you will feel lost, for different reasons. If you're comfortable with Scheme, you might want to try these, but I would really advice against starting with them. Few people go far this way.

link|flag
What makes Ruby so compelling? The softly softly approach never really did it for me. I'm more of a "let's bust the VCR into a million pieces and try and put it back together" kind of guy. Ok, I was only 11 when I did this and I got grounded, but I did manage to put it all back together. – BobTheBuilder Jan 11 '09 at 3:41
See my comment on A. Rex's answer – J Cooper Jan 11 '09 at 5:30
Ruby is compelling because it's very usable language for many things (for web programming currently the best) even if you don't know any functional programming, so you can solve real problems and see how functional patterns can help with real stuff. In Haskell you'll most likely write hello worlds. – taw Jan 11 '09 at 5:53
I can't see Ruby being a great tool for learning FP. Since it gives the opportunity to use 'traditional' methods, most people will stick to what they know. Learning in Haskell forces you to use FP for everything. There are plenty of exercises in Real World Haskell way beyond Hello World. – slim Jan 11 '09 at 7:11
Re writing hello worlds: I can understand this fear. However, when I learned Haskell, I immediately wrote something useful, a parser for a document format I was working on. I very successfully used Haskell's features to write a useful program. (Note: I do admit Ruby is useful on the web.) – A. Rex Jan 11 '09 at 7:13
show 3 more comments
vote up 1 vote down

"How to Design Programs": http://www.htdp.org/

By the way, what are your goals?

link|flag
vote up 1 vote down

I am in no way an expert on this, but personally I think starting with scheme might be a good idea. From what I know, scheme is a simplified version of LISP, think of it as LISP but with only the bare essentials. I think the syntax of scheme is extremely pure, you have to get past the parentheses but it really helped me get into the 'feel' of functional programming, without having to learn gobs of language features.

link|flag
vote up 1 vote down

I'll second Real World Haskell and add: "Haskell: The Craft of Functional Programming".

link|flag
vote up 1 vote down

I really found value in A taste of Haskell. It's a talk given by Simon Peyton Jones. It's a really nice overview and first look at the language, targeted at non-FP programmers.

Part 2 of the talk and a PDF of the slides. The camera never shows the slides, so the PDF really helps.

link|flag
vote up 0 vote down

I would start with Lisp (specifically Scheme) because it is simple; it has a very simple Syntax and no static type system to worry about.

Structure and Interpretation of Computer Programs will not only introduce you to Scheme but teach you all the major programming paradigms. The full text is available under a Creative Commons license.

After that you will have an easier time learning the additional features of Haskell, i.e. a more elaborate syntax, lazy evaluation and a powerful type system.

link|flag
vote up 0 vote down

Two great books:

"Structure and Interpretation of Computer Programs" (by Abelson & Sussman) and "Concepts, Techniques, and Models of Computer Programming" (by Peter Van Roy and Seif Haridi).

Both cover much more than functional programming only.

link|flag
vote up 0 vote down

Lisps are the only ones with a regular syntax at the core and well-defined standards (in the case of CL and Scheme). They make up for an enlightening ride.

I recommend Common Lisp.

There are good and free beginner's books on it, check out Lamkins' "Successful Lisp" and Seibel's "Practical Common Lisp":

link|flag
IIRC, Standard ML has a formally-specified standard whereas Common Lisp and Scheme do not (they are only informally specified). – Jon Harrop Aug 10 at 15:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.