Skip to content

Instantly share code, notes, and snippets.

@ponkore
Created March 11, 2012 23:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ponkore/2018664 to your computer and use it in GitHub Desktop.
Save ponkore/2018664 to your computer and use it in GitHub Desktop.
Call Java's System/exit from Clojure
(defn quit
([] (System/exit 0))
([status] (System/exit status)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment