Skip to content

Instantly share code, notes, and snippets.

@neilmock
Created January 22, 2010 18:37
Show Gist options
  • Save neilmock/284017 to your computer and use it in GitHub Desktop.
Save neilmock/284017 to your computer and use it in GitHub Desktop.
(defn blah1 [& params] (apply hash-map params))
(defn blah2 [& params] (blah1 params))
;; user> (blah1)
;; {}
;; user> (blah2)
;; No value supplied for key: null
;; [Thrown class java.lang.IllegalArgumentException]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment