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
Once you've installed lein and the lein-exec plugin, running the .clj file you've created is as simple as
lein exec hello.clj
In case you're passing command line arguments like
lein exec hello.clj arg1 arg2 arg3
you can access them in the 'foo' function in your hello.clj like
(foo *command-line-args*)