Changes between Version 31 and Version 32 of Clojure Client Tutorial


Ignore:
Timestamp:
Aug 4, 2011 3:51:18 PM (13 years ago)
Author:
kedwar10
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Clojure Client Tutorial

    v31 v32  
    1414
    1515At this point I recommend reading "Joy of Clojure", by Michael Fogus and Chris Houser. This is an excellent introduction to clojure if you are already familiar with lisp or scheme.  Much of the inspiration for this client comes from this book so if you're having trouble figuring out what is going on, this will provide most of the background you will need.  If you're short on time or funds, just search for online tutorials, there are plenty out there.  If you need to quickly look up the documentation on any particular function, just type "(doc f)" in the REPL where f is the function (This will also work for functions that you define provided that you wrote docstrings or added meta-data).
     16
     17Lisp/Scheme resources:
     18* The Little Schemer, The Seasoned Schemer (very gentle introduction to scheme)
     19* How To Design Programs [[http://www.htdp.org/]] (introduction to scheme and programming)
     20* On Lisp, by Paul Graham [http://www.paulgraham.com/onlisptext.html](advanced lisp; pdf available online)
    1621
    1722Some advice for clojure programming: