Skip to content

Instantly share code, notes, and snippets.

@mikeananev
Created January 17, 2022 11:01
Show Gist options
  • Save mikeananev/1fd3646e5b689d52d487f2912eac9c48 to your computer and use it in GitHub Desktop.
Save mikeananev/1fd3646e5b689d52d487f2912eac9c48 to your computer and use it in GitHub Desktop.
function arguments destructuring
(defn abc [& {a :function/a s :sequence d :d :or {d 5}}]
[a s d])
(abc {:function/a 2 :sequence 3 :d 4})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment