up vote 17 down vote favorite
15
share [g+] share [fb]

I am starting a new project at work where I will be required to use Lisp as a part of some cognitive work that I will be doing. I'm not very familiar with Lisp. Do any of you know of any books that will help me get up to speed quickly?

link|improve this question

feedback

14 Answers

up vote 9 down vote accepted

I can second the recommendation for On Lisp, but don't make it the first Lisp book you read. The first part of the book is totally appropriate for relative beginners, but you'll get a lot more out of it if you work through something else first. Both Practical Common Lisp and ANSI Common Lisp have also already been mentioned, and I also highly recommend them. I think ANSI Common Lisp is the best of them for quickly getting a sense of how Lisp "works".

Also, don't just read! The Seibel book link already posted has a link to lispbox, a free and painless-to-setup Lisp development environment.

link|improve this answer
On Lisp is targeted at programmers that already know Lisp. So, that's a great recommendation. Also, ANSI Common Lisp neglects a lot of important CL features. So if you read that, I suggest you complement it with Practical Common Lisp. – Luís Oliveira Jan 29 '09 at 21:43
I agree with the above comment about PCL being better for learning the details, but ACL is great for getting a programmer who is unfamiliar with any Lisp or even functional language to understand some key concepts quickly. – jtolle Jan 30 '09 at 15:47
feedback

Practical Common Lisp by Peter Seibel is very popular and available online.

link|improve this answer
feedback

I would recommend Structure and Interpretation of Computer Programs

link|improve this answer
Key point. This book, unlike all others mentioned, is specific to Scheme vs Common Lisp (both are Lisp dialects)... but it is a really good book. – user54650 Jan 29 '09 at 15:21
Not to mention all the other good side effects you get form reading this book, like getting a better understanding of programming and programming languages in general. – erikric Apr 8 '10 at 8:35
feedback

The Little Lisper helped me wrap my head around lisp.

link|improve this answer
I prefer the first edition over the current. – plinth Jan 29 '09 at 17:00
I read Practical common lisp and everything went fine now im reading the little schemer, but i would recommend starting with this one(its the same, little schemer is the new edition of little lisper) – DFectuoso Jan 29 '09 at 18:54
feedback

Paradigms of Artificial Intelligence Programming: Case Studies in Common Lisp is good. Don't let the title fool you, it's not all about AI. It's more of a history of AI, showing you how various historically important AI programs could be implemented in Common Lisp from scratch yourself. It has a ton of good general Lisp information that's applicable outside the realm of AI.

link|improve this answer
Not the ideal beginner's book, but invaluable if you're doing serious work. – David Thornley Jan 29 '09 at 18:39
feedback

Paul Graham's books on lisp are good: http://www.paulgraham.com/books.html

link|improve this answer
feedback

I'm fond of Practical Common Lisp.

link|improve this answer
feedback

I know the question is a bit dated, but in the meantime The Land of Lisp by Conrad Barski was published. It approaches Lisp is a very light-hearted and playful manner, but it manages to walk you through some interesting programs nonetheless. It's targeted at Lisp beginners. A fun read!

And for advanced Lispers I'd should also mention 'Let over Lambda' by Doug Hoyte. Hoyte makes a lot of references to 'On Lisp' and sees his book as an addition to it. The book is all about macro programming. Which is unquestionably Lisps most powerful, challenging, complex and rewarding feature. The first couple of chapters are available online for free.

link|improve this answer
Agreed on both counts, and it's good to see new books still trickling out. – Dave Newton Oct 11 '11 at 13:29
Let over Lambda's first six chapters are now available. – Abhijeet Kashnia Jan 9 at 18:24
feedback

Let Over Lambda is a good read. It is more about learning Lisp than learning "Lisp syntax", though, so don't make it your first book.

link|improve this answer
feedback

Paul Graham's books ANSI Common Lisp and On Lisp are really good. On Lisp is free too.

link|improve this answer
feedback

The Common Lisp Hyperspec is a useful reference, and it's generally easy to find things in there. Don't try to learn Common Lisp from it, but it may be very handy to have.

link|improve this answer
feedback

Not for beginners, in Lisp or programming, but one of the most beatiful book I read about computer programming:

Anatomy of Lisp

Some links I collected about Lisp

http://delicious.com/ajlopez/lisp

http://delicious.com/ajlopez/lisp+book

http://delicious.com/ajlopez/lisp+tutorial

link|improve this answer
feedback

After roadblock with several of the above mentioned books my conclusion is, Common Lisp: A gentle introduction to symbolic computation is the best book to start with Lisp. As its name suggests it is very gentle and levels your mind to start with other Lisp / Scheme books. Did i mention it is free?.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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