Loads the specified namespace and invokes its "main" function with
optional args.
(defn run* "Loads the specified namespace and invokes its \"main\" function with optional args." [ns-sym & args] (require ns-sym :reload-all) (apply (ns-resolve ns-sym 'main) args))
Comments top
No comments for run*. Log in to add a comment.