Skip to content

Instantly share code, notes, and snippets.

@koduki
Created April 5, 2009 05:56
Show Gist options
  • Save koduki/90383 to your computer and use it in GitHub Desktop.
Save koduki/90383 to your computer and use it in GitHub Desktop.
fib(0) -> 0;
fib(1) -> 1;
fib(N) -> fib(N - 2) + fib(N - 1).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment