On Thu, Oct 18, 2012 at 3:06 PM, Grant Rettke <gret...@acm.org> wrote:

> (-> ((fn []
>       (let [a 1]
>         (println "this is a: " a)
>         a)))
>    ((fn [a]
>       (let [b 2]
>         (println "this is b: " b)
>         (list a b))))
>    ((fn [[a b]]
>       (let [c 3]
>         (println "this is c: " c)
>         (println "Sum: " (+ a b c))))))


Why should you have to change the shape of your program to insert some
debugging statements?

David

-- 
You received this message because you are subscribed to the Google
Groups "Clojure" group.
To post to this group, send email to clojure@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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/clojure?hl=en

Reply via email to