Skip to content

Instantly share code, notes, and snippets.

@hamada-lemois
Created July 27, 2015 15:09
Show Gist options
  • Select an option

  • Save hamada-lemois/46597bc0418bd37a221a to your computer and use it in GitHub Desktop.

Select an option

Save hamada-lemois/46597bc0418bd37a221a to your computer and use it in GitHub Desktop.
フィボナッチ数列
(defun fib (count)
(defun fib-it (a b i count)
(format t "~a~%" a)
(if (< i count)
(fib-it b (+ a b) (incf i) count)))
(fib-it 0 1 0 count))
(fib 100)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment