Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

There are not many; well there is probably no book that can help you learn advanced programming concepts in Clojure such as macros. There are many great Lisp books like Let over lambda and On lisp,.

The question is - would you recommend to use Lisp book with Clojure?

Any other recommendations?

share|improve this question

closed as not constructive by Bill the Lizard Oct 2 '11 at 18:48

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 18 down vote accepted

Why not? You can find examples from On Lisp translated to Clojure by Fogus and Stuart Halloway

But first, look to "The Joy of Clojure" book - it has enough examples of macros in it, and explains when they should be used

share|improve this answer
1  
+1 for The Joy of Clojure. Great book! – Jason Down Aug 21 '11 at 22:17

I personally found it fine to use a general Lisp book with Clojure in order to help you understand the general principles (bottom up design, macros, functional programming in Lisp, the concept of the reader etc.). I've used both SICP and On Lisp in this way.

On the other hand, you clearly need a Clojure-specific book / tutorial if you want to master the specifics of Clojure, in particular:

  • The Clojure syntax
  • Clojure style (which is a bit more functional / lazy than most other Lisps)
  • Special features of Clojure such as concurrency / STM capabilities

I've found online material and reading source code of well-written Clojure libraries to be generally fine for learning the Clojure-specific pieces.

Though of course none of this is a substitute for just firing up a REPL and writing some code..... :-)

share|improve this answer

A few warnings:

1) I started reading On Lisp to get better at clojure but ended up liking Common Lisp more, so be careful :)

2) lisp dialects are very different languages that share certain properties, and are syntactically similar, but are otherwise separate in their philosophy. So you should be careful, writing beautiful and fast Common Lisp in Clojure will result in an ugly and probably slow mess. Same goes for the other way around and is also true for other dialects.

My advice would be to read those books on their own terms, and try to translate the concepts (not the code) to clojure only after you've understood them.

share|improve this answer

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