Page 2 of 4

Re: What's your favorite book about Lisp?

Posted: Tue Jul 01, 2008 10:45 am
by findinglisp
The one place where ANSI Common Lisp lacks versus Practical Common Lisp is with respect to CLOS. PG is not a fan of CLOS and doesn't really cover it. In contrast, Peter Siebel uses is heavily in PCL. That's one reason I recommend both to people. You'll definitely learn something from each.

Re: What's your favorite book about Lisp?

Posted: Tue Jul 01, 2008 4:05 pm
by finnrobi
Out of the books on that list, SICP is my favorite, but strictly speaking it is less 'about' lisp than those of the others I have read. My second choice is PAIP.

Re: What's your favorite book about Lisp?

Posted: Wed Jul 02, 2008 7:22 am
by habib
dlweinreb wrote:You might add "Lisp: A Gentle Introduction to Symbolic Computing" by David Touretzky, which is particularly good for beginners.
Seconded! It's a brilliant book for new-comers to Lisp without an extensive programming background. You can get it here:
http://www.cs.cmu.edu/~dst/LispBook/index.html

After which I would recommend following Nick Levine's lectures that guide you through ANSI Common Lisp and add a few more exercises and a project. Available here:
http://www.nicklevine.org/declarative/lectures/

Re: What's your favorite book about Lisp?

Posted: Wed Jul 02, 2008 11:25 am
by Alexander Lehmann
findinglisp wrote:The one place where ANSI Common Lisp lacks versus Practical Common Lisp is with respect to CLOS. PG is not a fan of CLOS and doesn't really cover it. In contrast, Peter Siebel uses is heavily in PCL. That's one reason I recommend both to people. You'll definitely learn something from each.
Dito. Also, PCL is sometimes easier to comprehend than ACL, whereas I find that ACL in spite of being a little bit more "sophisticated" is worth reading it twice or maybe even three times.

Re: What's your favorite book about Lisp?

Posted: Wed Jul 09, 2008 1:17 pm
by jast
I like both ACL and PCl but to be honest, for someone who wants to start learning Lisp, I recommend ACL. I feel that PCL is best suited for a person who already has some contact with the language. Even if that contact is not much! Both books are complementary to each other so using both at the same time to learn the language might be a good option. But my favourite Lisp book is still PAIP, perhaps because of the huge influence it had on me when I read it :)

Re: What's your favorite book about Lisp?

Posted: Thu Jul 10, 2008 11:25 am
by nklein
skc wrote:I voted for ACL over PCL (although i like them both) for its style, exercises, and appendix B and D.
Agreed about ACL over PCL (as long as I'm remembering right and Appendix B is the Lisp in Lisp section).

Sadly, neither book address the pile of soup that is (loop ...). Each have a few examples. I'd like to be able to read (loop ...) calls even if I stick to (do ...) and (do* ...) when writing my own code. What's the best book/resource for learning about (loop ...)?

Re: What's your favorite book about Lisp?

Posted: Thu Jul 10, 2008 11:45 am
by Alexander Lehmann
The HyperSpec. ;) There's a pretty good description of loop's BNF. But I must admit that it takes some time to work through this page.

Re: What's your favorite book about Lisp?

Posted: Tue Jul 15, 2008 5:37 am
by plutonas
@findinglisp:
you can get the pdf of "On Lisp" and print it out yourself. Thats what i did, and it's worth it.

Re: What's your favorite book about Lisp?

Posted: Tue Jul 15, 2008 8:05 am
by findinglisp
plutonas wrote:@findinglisp:
you can get the pdf of "On Lisp" and print it out yourself. Thats what i did, and it's worth it.
Yea, I have the PDF. I have read about 90% of it on-screen (airplanes, etc.). I haven't wanted to print it out to save the trees, and at the time I first started reading it, I heard that APress was going to reprint it. That would have been ideal, had it happened.

Re: What's your favorite book about Lisp?

Posted: Sun Jul 20, 2008 4:15 pm
by Geoff Wozniak
I picked The Art of the Metaobject Protocol simply because I learned more about programming from that book than any other I've ever read. I've read most of them (even CLTL2!) and they're all enjoyable. I'd have to pick Norvig's PAIP as my second.