I created a basic hello world class in eclipse with clojure and counterclockwise and I'm able to compile it with clojure no problem.
(ns ca.ckovacs.test.helloWorld (:gen-class)) (defn -main [greetee] (println (str "Hello " greetee "!")))
I see that this generates three classes in my /classes folder:
helloWorld__init.class helloWorld$_main__135.class helloWorld$loading__6309__auto__133.class
But why don't I get a helloWorld.class?
I eventually want to be able to use a Clojure compiled class within Eclipse.
I must be missing something obvious, but reading through the Compilation page at clojure.org, the posted example hello world says you can just load the helloWorld class like any other java class.
Thanks.