1

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)?

1 Answer 1

1

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.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.