Targeting Clojure 1.2.0. Nice introduction, good, practical examples.
> Programming Clojure - http://pragprog.com/book/shcloj/programming-clojure
Aaron Bedra et al are working on a new edition of this, bringing it up
to Clojure 1.3.0. The original targets Clojure 1.1 (I think? Or 1.0?).
I don't have this book.
> Practical Clojure - http://www.apress.com/9781430272311
Targeting Clojure 1.2.0. I don't have this book.
> Joy of Clojure (not for beginners) - http://joyofclojure.com/
Not for beginners but an excellent "why" book! I love this book - I
keep re-reading it.
Also:
Clojure Programming - http://oreilly.com/catalog/0636920013754
Currently in Rough Cuts. Targeting Clojure 1.3.0. Really enjoying this too.
--
Sean A Corfield -- (904) 302-SEAN
An Architect's View -- http://corfield.org/
World Singles, LLC. -- http://worldsingles.com/
Railo Technologies, Inc. -- http://www.getrailo.com/
"Perfection is the enemy of the good."
-- Gustave Flaubert, French realist novelist (1821-1880)
--
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clo...@googlegroups.com
Note that posts from new members are moderated - please be patient with your first post.
To unsubscribe from this group, send email to
clojure+u...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en
Also check this great online introduction (targeting 1.0): http://java.ociweb.com/mark/clojure/article.html
--
Learning lisp: Practical Common Lisp
This is an excellent text for people who are Java programmers.
Really learning lisp: Let Over Lambda
This will give you ways to think about Lambda as the
fundamental mechanism. Let is just Lambda binding.
Let over Lambda gives shared local variable scope.
Lambda over Let over Lambda gives objects, etc.
Really, really learning lisp: Lisp In Small Pieces
This literate document walks you through the real
internals of a lisp system using the actual executable
code of the interpreter and compiler. The beauty of this
book is that you can read the source code like a novel.
Learning Clojure: Clojure in Small Pieces
Ok, this is my attempt to mimic Lisp In Small Pieces
for Clojure. It would be great if people would contribute
chapters for understanding the internals of Clojure. We
would then have a book that could be read like a novel
which would allow people to fully understand Clojure.
The CISP book includes a complete Clojure source code
distribution. By following the instructions you can
automatically generate a running Clojure REPL and a
PDF containing the explanation (such as it is so far).
http://daly.literatesoftware.com/clojure.pdf (pdf doc)
http://daly.literatesoftware.com/clojure.pamphlet (pdf source)
Tim Daly
+1 for the Joy of Clojure. I am really enjoying reading it. It's a
book that assumes you know what you're doing, which is very much
welcomed.