vote up 8 vote down star
4

In a blog post regarding his JavaScript book, Doug Crockford says

I relied on two models when I wrote JavaScript: The Good Parts. The first was Kernighan and Richie's The C Programming Language. It is a brilliant little book. I thought there should be a K&R for JavaScript. When it seems that most tech books are sold by the pound, it is nice to read a little book that cleanly lays out what you need to know.

What Haskell book comes closest to this philosophy?

flag

9 Answers

vote up 3 vote down check

Edit: Just realized the below book has been imported into Wikibooks


I'm using this online book (PDF) to study Haskell.

http://www.cs.utah.edu/~hal/htut/

It's concise and explains the basic concepts well step by step. It's about 190 pages but with some small good exercise per section.

link|flag
vote up 11 vote down

Out of the few I have picked up, Real World Haskell seems the most approachable.

link|flag
2  
At 700 pages, it's way too verbose. Although I like examples, I want to go through them leisurely after I have a good grasp of the language. If I were to put a limit on the size of the book, I'd say I'm looking for something <200 pages. – Andrey Fedorov Feb 10 at 22:34
vote up 2 vote down

HaskellWiki is always a nice reference,

http://www.haskell.org/haskellwiki/Books

link|flag
vote up 4 vote down

The most concise (but still helpful) is Gentle introduction to Haskell (PDF)

link|flag
And as noted elsewhere, it's as gentle as chainsaw. It's OK if you are already into FP, and want to learn Haskell, but will not introduce you "gently" into it. – Slartibartfast Feb 7 at 15:22
vote up 0 vote down

I'll also consider Yet Another Haskell Tutorial (YAHT).

link|flag
vote up 2 vote down

I'd start with: http://learnyouahaskell.com/

It's a great book along the lines of Why's Ruby book.

link|flag
vote up 4 vote down

If you are a real beginner I would recommend this book:

http://www.cs.nott.ac.uk/~gmh/book.html, it is designed to teach haskell to college students, so if you want to dive into more usable scenerio's you would need a more comprehensive book like real world haskell.

link|flag
I just started reading it, so I can't vouch for the content, but the design and formatting is absolutely beautiful. It's worth looking through just to see an example of what a well thought-out layout looks like. I wish more programming books were written this way. – Andrey Fedorov Feb 11 at 17:08
vote up 1 vote down

Crockford's quote goes on to say:

The other was William Goldman's The Princess Bride. Goldman remembers his grandfather reading him a wonderful book by S. Morgenstern. When he's grown he searches for the book and is very excited when he finally finds a copy, but discovers to his horror and confusion that it really isn't very good. Why did he remember it as being so wonderful? Because his grandfather only read him the good parts.

It's hard to say which Haskell tutorial is most in that spirit, but I'd guess Learn You a Haskell. On the other hand, I suspect that you have to know what the bad parts are anyway in practice so that you can avoid them or deal with them.

link|flag
vote up 3 vote down

If you want a small, clean and good introduction that will give you the "feel" of Haskell, as well as covering the most important points you need to know, the Graham Hutton book is the way to go.

As well, Chapter 8 ("Functional Parsers") is probably the best introduction to learning to build your own monads I've read. (Yes, this is really something you want to learn, and yes, I know that the chapter doesn't actually mention the word "monad.")

link|flag
Got this book, very happy with it. Loved chapter 8 :) – Andrey Fedorov May 20 at 18:31

Your Answer

Get an OpenID
or

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