We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Question Can I compile a clojure script, with the boot shebang, and use the binary executable instead of running the start boilerplate evertime?
To Reproduce create a file example.clj,
example.clj
#!/usr/bin/env boot (defn -main [& args] (println (str "Hello " (reduce str (map #(str % ", ") args)))))
Example call,
chmod +x ./example.clj ./example.clj "Peter" "Julian" "Mary"
Outputs:
Hello Peter, Julian, Mary,
Expected behavior Get an executable that doesn't take 5 seconds to do the same output,
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Question
Can I compile a clojure script, with the boot shebang, and use the binary executable instead of running the start boilerplate evertime?
To Reproduce
create a file
example.clj
,Example call,
Outputs:
Expected behavior
Get an executable that doesn't take 5 seconds to do the same output,
Desktop (please complete the following information):
The text was updated successfully, but these errors were encountered: