Details
Assignee
UnassignedUnassignedReporter
dennis zanedennis zanePatch
CodePriority
Major
Details
Details
Assignee
Unassigned
UnassignedReporter
dennis zane
dennis zanePatch
Code
Priority

Created May 7, 2012 at 3:25 AM
Updated July 19, 2022 at 7:04 PM
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.