Skip to content

Instantly share code, notes, and snippets.

@rlucha
Created March 23, 2016 03:33
Show Gist options
  • Select an option

  • Save rlucha/dd82b3bfdc154e8dd651 to your computer and use it in GitHub Desktop.

Select an option

Save rlucha/dd82b3bfdc154e8dd651 to your computer and use it in GitHub Desktop.
(defn fib [a b] (lazy-seq (cons a (fib b (+ b a)))))
(reduce +
(filter even?
(take-while #(< % 4000000) (fib 1 2))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment