Skip to content

Instantly share code, notes, and snippets.

@davegolland
Created June 16, 2014 21:50
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 davegolland/dd47281d1ef1e4a10f3b to your computer and use it in GitHub Desktop.
Save davegolland/dd47281d1ef1e4a10f3b to your computer and use it in GitHub Desktop.
threading-example
(->> [1 2 3 4 5] ; the initial vector
(filter odd?) ; after this step we have: (1 3 5)
(take 2) ; (1 3)
last ; 3
inc) ; 4
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment