Skip to content

Instantly share code, notes, and snippets.

@renanreismartins
Created January 21, 2015 19:05
Show Gist options
  • Save renanreismartins/7569dbef211a39301eaa to your computer and use it in GitHub Desktop.
Save renanreismartins/7569dbef211a39301eaa to your computer and use it in GitHub Desktop.
(fn fb [acc tamanho]
(if (< (count acc) tamanho)
(recur (conj acc (apply + (take-last 2 acc))) tamanho)
acc))
(fb [1 1] 6)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment