Welcome! Please see the About page for a little more info on how this works.

0 votes
in Clojure by

There is no standard function to exit the clojure process.
In java implementation,we use (System/exit 0),but in other implementations(CLR), i have to use another function.

Why not add a standard function in clojure.core?
For example:

(defn exit
((link: ) (exit 0)
((link: status) (System/exit status)))

I think it's useful for us.

1 Answer

0 votes
by
Reference: https://clojure.atlassian.net/browse/CLJ-986 (reported by killme2008)
...