Skip to content

Instantly share code, notes, and snippets.

@johnkpaul
Created May 7, 2012 16:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save johnkpaul/9a675e94ef72b901210b to your computer and use it in GitHub Desktop.
Save johnkpaul/9a675e94ef72b901210b to your computer and use it in GitHub Desktop.
(let [fib
(fn [x]
(cond
(<= x 1) 1)
:else (+ (fib (- x 1)) (fib (- x 2))))]
fib)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment