Hacker News new | ask | show | jobs
by danneu 4704 days ago
I'm having success introducing even my noob programmer friends to Clojure by directing them to install Leiningen (Clojure's build tool) and Lighttable (editor with integrated repl).

Generate the project skeleton:

$ lein new foobar

Open up folder `foobar` with Lighttable, and you can begin evaluating code in your source files (it starts you with foobar/src/core.clj).

And you're off.