To pass the time until kickoff, I’ve been writing a few utility apps for robotics using Clojure and SWT. Programs that would calculate seeding points, things like that. A thought hit me while I was working on this project: could you write the code for the robot using either Clojure or Scala? (Two new languages created on the JVM that are getting a lot of popularity.)
Not having a lot of experience with the JVM, I don’t know exactly how the packaging process works with Clojure. I know that it can produce an executable jar just like Java can, and I know that there is a build dependency on the clojure libs, but does the executing JVM still require any pre-installed Clojure files? If it didn’t, then how hard would it be to tell Netbeans to add the Clojure libraries to the classpath and dependency list, compile the clojure files, and send that jar to the robot?
The same goes for Scala, which I’ve pretty much only heard of, although most of what I’ve heard are good things. Has anyone experimented with the form of Java on the cRio like this?