Skip to content

Instantly share code, notes, and snippets.

@firthh
Last active January 16, 2019 09:11
Show Gist options
  • Save firthh/f60d407fb6dd6c9c014e189367bdec24 to your computer and use it in GitHub Desktop.
Save firthh/f60d407fb6dd6c9c014e189367bdec24 to your computer and use it in GitHub Desktop.
Shutdown
(defn -main [& args]
(.addShutdownHook (Runtime/getRuntime)
(Thread. (fn []
(println "Shutting down application"))))
(while true
(Thread/sleep 500)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment