Skip to content

Instantly share code, notes, and snippets.

@cipherself
Last active December 23, 2015 16:39
Show Gist options
  • Save cipherself/6663163 to your computer and use it in GitHub Desktop.
Save cipherself/6663163 to your computer and use it in GitHub Desktop.
(define (fib n)
(cond ((= n 0) 0)
((= n 1) 1)
(else (+ (fib (- n 1))
(fib (- n 2))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment