Skip to content

Instantly share code, notes, and snippets.

@masaedw
Created January 15, 2011 03:09
Show Gist options
  • Save masaedw/780655 to your computer and use it in GitHub Desktop.
Save masaedw/780655 to your computer and use it in GitHub Desktop.
(ns sample-program.core)
(def fib-seq
(lazy-cat [0 1] (map + (rest fib-seq) fib-seq)))
(defn fib [n]
(nth fib-seq n))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment