I'm just starting to teach myself Clojure. As part of supplementing my studies I've watched a few UC Berkley lectures by Brian Harvey on the topic of functional programming. In his second lecture on functional programming, at about minute 34, he uses the applic function to show the order of evaluation. Does Clojure have a feature similar to this? It sure would be handy to see the order of evaluation as I work to understand the whys and wherefores.
|
feedback
|
|
You can do just in REPL (answer by Mike Meyer in Clojure mailing list: Debugging in Clojure)
there are also Clojure Debugging Toolkit ("Ridiculously long instructions on how to use it are here: http://georgejahad.com/clojure/emacs-cdt.html ") And some IDE (like Eclipse with Counterclockwise plugin) allow to debug: to set breakpoints, see locals, step in/out, ... | |||
feedback
|