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
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
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..
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
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
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
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