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.