I\'m exploring clojure and am puzzled. What fills in the blank to make the following expression eval to true?
I\'ve seen several different ways for :use in clojure--what\'s the idiomatic/preferred method? #1 (ns namespace.core
There are a few different ways to create Java classes in Clojure, so what are the tradeoffs when picking between gen-class, proxy, and reify in Clojure?(are there other ways to create Java classes tha
I want to write the following in Clojure, but I can\'t figure it out for the life of me: new TouchCommand() {
In Java when you wa开发者_开发百科nt to override something you use @Override sometimes. How can you do the same in a Clojure proxy?Every method in a proxy should override a superclass method or an int
Here\'s an extract from a REPL session that hopefully explains what I want to achieve: user> (Integer/parseInt \"1\")
I have a macro that will implement a Java interface that is a listener. I defined the macro to take a map containing functions that I w开发者_JAVA技巧ant to destructure, and use for each of the interf
I have recently started learning clojure and am reading The Joy of Clojure to get to grips with it. I have a question regarding a code segment in the Macros chapter (8), on page 166
I\'ve been struggling to get a Prüfer sequence algorithm implemented in Clojure, primarily as a mental exercise. While what I have works correctly, I was wondering if there\'s a more concise way of r
EDITED because question is about same program. I\'m trying to take the top fifty items in the first vector and write them to the topfifty variable, to return to use elsewhere.