Skip to content

Instantly share code, notes, and snippets.

@lukaszkorecki
Created February 2, 2016 18:22
Show Gist options
  • Save lukaszkorecki/d6ad510fadc1369ab889 to your computer and use it in GitHub Desktop.
Save lukaszkorecki/d6ad510fadc1369ab889 to your computer and use it in GitHub Desktop.
(defn do-stuff [v & opts]
(->
v
first
:a
( (if opts inc identity ))
inc))
(do-stuff [{ :a 1 :b 2 }])
; => 2
(do-stuff [{ :a 1 :b 2 }] true)
; => 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment