I\'ve installed Geany on my Linux Mint machine and I wrote some simple code. Just a small hello world to get started with the language.
Now I\'d like to run it and see w
For a single clj file you can add,
#!/usr/bin/env java -cp /path/to/clojure-1.2.0.jar clojure.main
to the top of the file and make it executable or you can use leiningen which is a clojure build tool it will create a single jar that has everything packed, then you can just do,
java -jar cool_app.jar