Reputation: 7759
Is there a way to cause the clojure-launcher (i.e. 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)?
Upvotes: 1
Views: 153
Reputation: 49339
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.
Upvotes: 1