Skip to content

Instantly share code, notes, and snippets.

@kagamilove0707
Created May 31, 2013 13:03
Show Gist options
  • Select an option

  • Save kagamilove0707/5684839 to your computer and use it in GitHub Desktop.

Select an option

Save kagamilove0707/5684839 to your computer and use it in GitHub Desktop.
Clojureで書いたフィボナッチ数列ですー>ω<
(defn fib [x y] (cons x (lazy-seq (fib y (+ x y)))))
(print (take 20 (fib 1 1)))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment