Changes between Version 52 and Version 53 of Clojure Client Tutorial


Ignore:
Timestamp:
Aug 8, 2011 4:15:34 PM (13 years ago)
Author:
kedwar10
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Clojure Client Tutorial

    v52 v53  
    2929
    3030Some advice for clojure programming:
    31 * There is no solid way to debug clojure code, so stick to small functions that you can test in the REPL.
     31* For debugging, use [http://richhickey.github.com/clojure-contrib/trace-api.html].
    3232* :pre and :post conditions can be used to put constraints on functions.  Here is an example [http://blog.fogus.me/2009/12/21/clojures-pre-and-post].
    3333* Leiningen provides "compile" and "run" commands: NEVER USE THESE (unless you want java interop, then you must be careful to recompile the function you wish to export, before running them in the REPL).