Running a specific Clojure namespace-function?
Is there a way to cause the clojure-launcher (i.e开发者_如何学JAVA. the wrapper around clojure.main
) to run a specific function from a certain namespace (I'm looking for a solution that does not require AOT-compiling the namespace and calling its main-function)?
You can call namespace's main function (or any other function) withtout AOT just pipe,
(use 'ns)
(fn)
to clojure.main assuming classpath stuff set up correctly.
精彩评论