Skip to content

Instantly share code, notes, and snippets.

@jeremyheiler
Last active January 2, 2016 17:39
Show Gist options
  • Save jeremyheiler/8338692 to your computer and use it in GitHub Desktop.
Save jeremyheiler/8338692 to your computer and use it in GitHub Desktop.
user> (defn foo [& {:keys [bar] :or {bar 1}}] bar)
#'user/foo
user> (foo)
1
user> (foo :baz 2)
1
user> (foo :bar 2)
2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment