#26
Fibonacci Sequence
 

Difficulty:Easy
Topics:fibonacci seqs


Write a function which returns the first X fibonacci numbers.
test not run
(= (__ 3) '(1 1 2))
test not run
(= (__ 6) '(1 1 2 3 5 8))
test not run
(= (__ 8) '(1 1 2 3 5 8 13 21))


Code which fills in the blank: