Details
Description
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
([] (exit 0)
([status] (System/exit status)))
I think it's useful for us.