I\'m using agents to manipulate a structure, but I don\'t have all my side effects. All the messages are sent(I\'ve printed and counted them), but there are times when I don\'t have all my side-effe
I\'m learning how debug a clojure app...I\'ve tried several tools and no one has convinced me..now I\'m trying swank-cdt which is based in CDT...I\'ve read the instruction here:
I am studying the sicp book, and I have a doubt with the substitution model of a procedure: (defn A [x,y]
Reading the clojure API for import I see that :import in the ns macro is preferred to开发者_运维百科 import, however when i\'m coding using swank/slime/emacs, I can\'t c-x c-e the (ns .. ) s-expressio
At the top of the clojure.core file (below the comments and the namespace declaration) there are two definitions with no extra code or information:开发者_如何学C
I have a point in my clojure code where I want to know what the call stack was (ie: list of clojure funct开发者_JS百科ions used to get there). How can I do this?This isn\'t the nicest solution, but it
In Clojure how can I read a public member variables of an inst开发者_JAVA技巧ance of a Java class? I want something like:
I am writing a Clojure class using gen-class. I have a \"state\" field that I am trying to access in the following code:
I have a list of x,y points stored as a vector of vectors, and I want to find out the bounds. For example, given this:
I\'m trying to run a web server using the following invocation (run-jetty #\'handler {:host \"hostname\" :port 8080})