Hacker News new | ask | show | jobs
by briancarper 5819 days ago
You can always exit via (System/exit 0), 0 being the return code.

`java -cp clojure.jar clojure.main` is the preferred method of starting Clojure rather than using -jar, I think.

1 comments

> You can always exit via (System/exit 0), 0 being the return code.

That's how I implement the exit function in the article.