Skip to content

Instantly share code, notes, and snippets.

@scooter-dangle
Forked from neilchaudhuri/CollectionsDemo.clj
Last active September 3, 2015 00:50
Show Gist options
  • Save scooter-dangle/5cd40444e2dc0033267a to your computer and use it in GitHub Desktop.
Save scooter-dangle/5cd40444e2dc0033267a to your computer and use it in GitHub Desktop.
Clojure code to perform operations on collections.
(->> (data)
(filter even?)
(map #(* 3 %))
(reduce +))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment