Skip to content

Instantly share code, notes, and snippets.

@deque-blog
Last active April 30, 2017 11:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save deque-blog/5a7e3f918493ab7001212e806f3d7775 to your computer and use it in GitHub Desktop.
Save deque-blog/5a7e3f918493ab7001212e806f3d7775 to your computer and use it in GitHub Desktop.
;; Lambda function with:
;; - 2 arguments x and y
;; - capture of value z
(fn [x y] (+ x y z))
;; Short notation for the same function
#(+ %1 %2 z)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment