If a certain Java class has a method called "eval", how can I call it from Clojure?
Doing the following seems to call the eval method from the clojure.core instead of TestObject's eval:
(defn test[x]
(let [obj (new TestObject)]
(. obj eval x)))