Name: Anonymous 2011-08-19 10:47
(defun fib (n)
(loop repeat n
for x = 0 then y and y = 1 then (+ x y)
finally (return y)))Why do people think Lisp is functional again?
(defun fib (n)
(loop repeat n
for x = 0 then y and y = 1 then (+ x y)
finally (return y)))