pmf
pmf

Reputation: 7759

Running a specific Clojure namespace-function?

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

Answers (1)

Hamza Yerlikaya
Hamza Yerlikaya

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

Related Questions