Skip to content

Instantly share code, notes, and snippets.

@luxbock
Created December 29, 2014 07:37
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 luxbock/c8ab4eaf7aabf3440cb1 to your computer and use it in GitHub Desktop.
Save luxbock/c8ab4eaf7aabf3440cb1 to your computer and use it in GitHub Desktop.
fib
(cons 1 (fib 1 (+ 1 1)))
(cons 1 (cons 1 (fib 2 (+ 1 2))))
(cons 1 (cons 1 (cons 2 (fib 3 (+ 2 3)))))
(cons 1 (cons 1 (cons 2 (cons 3 (fib 5 (+ 3 5))))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment