Skip to content

Instantly share code, notes, and snippets.

@creese
Created April 3, 2016 15:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save creese/0fecb9e60788b5a81cd1ff5328b51a71 to your computer and use it in GitHub Desktop.
Save creese/0fecb9e60788b5a81cd1ff5328b51a71 to your computer and use it in GitHub Desktop.
#!/usr/bin/env boot
(set-env! :dependencies '[[org.clojure/data.json "0.2.6"]
[org.clojure/test.check "0.9.0"]
[prismatic/schema "1.1.0"]
[the-local-project "11.11.0"]])
(require '[boot.cli :refer [defclifn]]
'[clojure.data.json :as json])
(defclifn -main
[o option VAL kw "The option"]
(println "hello boot")
(System/exit 0))
@creese
Copy link
Author

creese commented Apr 3, 2016

If I remove Line 9, it works.

@creese
Copy link
Author

creese commented Apr 3, 2016

If I remove Line 6, but leave Line 9, it works.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment