Problem compiling in Clojure
问题 I've been trying to compile a very simple test.clj in Clojure without any success. I have a thread on the Clojure Google Group with several responses, but nothing has helped. To quickly summarize, here is my clojure file: (ns test.test (:gen-class)) (defn -main [gre] (println (str "Hello " gre))) Basically it's the example file provided in the Clojure documentation. I have placed this file appropiately in clojure/src/test/test.clj , and should be able to compile with (compile 'test.test) ,