Skip to content

Instantly share code, notes, and snippets.

@pbalduino
Last active December 27, 2015 04:39
Show Gist options
  • Save pbalduino/7268251 to your computer and use it in GitHub Desktop.
Save pbalduino/7268251 to your computer and use it in GitHub Desktop.
Argument verification with Clojure
(defn -main[& args]
(if-let [_ args]
(println "with args")
(println "without args")))
; $ lein run
; without args
; $ lein run meh
; with args
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment