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
;; This should only be executed by babashka (defmacro setup [& body] (when (System/getProperty "babashka.version") `(do ~@body))) (setup (def deps '{:deps {clj-time {:mvn/version "0.14.2"}}}) (require '[babashka.process :as p]) (-> (p/process (into ["clojure" "-Sdeps" deps "-M" *file*] *command-line-args*) {:inherit true}) deref :exit (System/exit))) ;; JVM code only reachable from here (println "Hello from the JVM!") (println *clojure-version*) (println *command-line-args*) (require '[clj-time.core :as t]) (println (t/hour (t/now)))
Usage:
$ bb /tmp/xpclj.clj 1 2 3 Hello from the JVM! {:major 1, :minor 10, :incremental 1, :qualifier nil} (1 2 3) 19
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Usage:
The text was updated successfully, but these errors were encountered: