Re: Installing Clojure on Windows 7

2013-01-27 Thread Ryan Cole
I guess I don't understand what's so difficult about getting Clojure, or Light Table, to work on Windows (7). I literally just installed the JDK, put the bin directory of it on my $PATH, and with that alone, Light Table will work just fine. I then downloaded the Leiningen batch file and put it

Re: Installing Clojure on Windows 7

2013-01-26 Thread Ryan Cole
It's actually pretty simple, if you decide to use leiningen and light table, the editor. All you have to do is install the JDK (decline the JRE option, when it asks) and then put leiningen and light table on your system path. You're done. Leiningen and light table will download dependencies as

Importing gen-class classes from one namespace into another, like Java?

2013-01-26 Thread Ryan Cole
I'm basically writing a jar to be used entirely from a Java application, in Clojure. I don't know if it's better to just use Java for this yet, or not. I'm experimenting, though. I've got every namespace in my Clojure project compiling using AOT. In one namespace, I use gen-class to create a

Re: Importing gen-class classes from one namespace into another, like Java?

2013-01-26 Thread Ryan Cole
I forgot to mention, I also tried replacing the dashes with underscores, in the import namespace in the core.clj file. Same error. Ryan On Saturday, January 26, 2013 4:21:24 PM UTC-6, Ryan Cole wrote: I'm basically writing a jar to be used entirely from a Java application, in Clojure. I

Java annotations on functions, in conjunction with gen-class?

2013-01-25 Thread Ryan Cole
Hi all, beginner here, I'm trying to write a Minecraft plugin in Clojure, and use AOT so that the Minecraft server can load it right up. I've got this much going, and all as well. The server expect some of my functions in a class that I'm extending to use an appropriate annotation on the

Re: Java annotations on functions, in conjunction with gen-class?

2013-01-25 Thread Ryan Cole
at 11:14 PM, Ryan Cole ry...@rycole.comjavascript: wrote: Hi all, beginner here, I'm trying to write a Minecraft plugin in Clojure, and use AOT so that the Minecraft server can load it right up. I've got this much going, and all as well. The server expect some of my functions in a class