Created
May 31, 2013 13:03
-
-
Save kagamilove0707/5684839 to your computer and use it in GitHub Desktop.
Clojureで書いたフィボナッチ数列ですー>ω<
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (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