Changes between Version 77 and Version 78 of Clojure Client Tutorial


Ignore:
Timestamp:
Aug 25, 2011 11:57:31 AM (13 years ago)
Author:
kedwar10
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Clojure Client Tutorial

    v77 v78  
    1919You could skip this step but it will less convenient later on for debugging.
    2020
    21 While a background in Scheme and Java should be sufficient to immediately start working with the client, an excellent overview of the idiomatic use of Clojure can be found in "Joy of Clojure", by Michael Fogus and Chris Houser.  If you need to quickly look up the documentation on any particular function, just type "(doc <function name>)" in the REPL (This will also work for functions that you define provided that you wrote docstrings or added meta-data).
     21While a background in Scheme and Java should be sufficient to immediately start working with the client, an excellent overview of the idiomatic use of Clojure can be found in "Joy of Clojure", by Michael Fogus and Chris Houser.  If you need to quickly look up the documentation on any particular function, just type "(doc <function name>)" in the REPL.  This will also work for functions that you define provided that you wrote docstrings or added meta-data.  For example,
     22
     23{{{
     24user=> (defn foo "Returns the argument." [x] x)
     25#'user/foo
     26user=> (doc foo)
     27-------------------------
     28user/foo
     29([x])
     30  Returns the argument.
     31nil
     32}}}
     33
    2234
    2335Clojure Resources: