Skip to content

Instantly share code, notes, and snippets.

@MikeMKH
Created October 18, 2014 16:50
Show Gist options
  • Save MikeMKH/5761dee561557545b622 to your computer and use it in GitHub Desktop.
Save MikeMKH/5761dee561557545b622 to your computer and use it in GitHub Desktop.
Thurshy example in Clojure
;;waterfall
(reduce +
(filter even?
(range 101)))
;;thrushy
(->> (range 101) (filter even?) (reduce +))
@MikeMKH
Copy link
Author

MikeMKH commented Oct 18, 2014

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment