Re: Compilation problems

2009-01-02 Thread Rayne
On Jan 2, 11:27 am, "Stephen C. Gilardi" wrote: > On Jan 2, 2009, at 11:51 AM, Rayne wrote: > > > I checked, and the classpath (compile-path) is the "classes" directory > > in my clojure folder, so I put the file in there, and tried to compile > > it, it gave me > > You'll need to learn a bit a

Re: Compilation problems

2009-01-02 Thread Stephen C. Gilardi
On Jan 2, 2009, at 11:51 AM, Rayne wrote: I checked, and the classpath (compile-path) is the "classes" directory in my clojure folder, so I put the file in there, and tried to compile it, it gave me You'll need to learn a bit about Classpath to work with Clojure. Basically, Classpath is a l

Re: Compilation problems

2009-01-02 Thread Rayne
On Jan 2, 11:02 am, Meikel Brandmeyer wrote: > Hi, > > Am 02.01.2009 um 17:37 schrieb Rayne: > > > The compilation produced 2 different class files, > > but it gave me a class not found error saying it couldn't find rayne > > $_main__32.class. It produced the class files, but gave me an error..

Re: Compilation problems

2009-01-02 Thread Meikel Brandmeyer
Hi, Am 02.01.2009 um 17:37 schrieb Rayne: The compilation produced 2 different class files, but it gave me a class not found error saying it couldn't find rayne $_main__32.class. It produced the class files, but gave me an error.. O_o. I'm on a windows vista PC by the way, thanks. Make sure t

Re: Compilation problems

2009-01-02 Thread Rayne
On Jan 2, 10:44 am, "Stephen C. Gilardi" wrote: > On Jan 2, 2009, at 11:37 AM, Rayne wrote: > > > into a file called rayne.clj and started it clojure, and typed > > (compile 'rayne). The compilation produced 2 different class files, > > but it gave me a class not found error saying it couldn't

Re: Compilation problems

2009-01-02 Thread Stephen C. Gilardi
On Jan 2, 2009, at 11:37 AM, Rayne wrote: into a file called rayne.clj and started it clojure, and typed (compile 'rayne). The compilation produced 2 different class files, but it gave me a class not found error saying it couldn't find rayne $_main__32.class. It produced the class files, but ga

Compilation problems

2009-01-02 Thread Rayne
I already made a post about problems compiling with emacs, but I suppose I'm the only one whos having this problem and no one knows how to fix it. I was testing out compilation into class files with clojure a little while ago. I put (ns rayne (:gen-class)) (defn -main [& args] (println("HI"))) i