Just some clojure notes:

default


No longer updated; please use this link

 
lein repl
# Start the clojure repl
# leiningen must be installed

lein new app my-first-program
# Start a new clojure project

lein run
# Run your project

lein uberjar
# Build the project

java -jar target/uberjar/clojure-noob-0.1.0-SNAPSHOT-standalone.jar
# Run the project from java
# This can be distributed

(System/exit 0)
# Exit clojure repl in emacs ?? what is it called again?

default