Skip to content

Instantly share code, notes, and snippets.

@kaini
Created January 2, 2011 20:31
Show Gist options
  • Save kaini/762791 to your computer and use it in GitHub Desktop.
Save kaini/762791 to your computer and use it in GitHub Desktop.
int fib(n) { return fib(n-1) * n }
int fib(0) { return 1; }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment