Skip to content

Instantly share code, notes, and snippets.

@tmiz
Created October 18, 2011 07:21
Show Gist options
  • Save tmiz/1294802 to your computer and use it in GitHub Desktop.
Save tmiz/1294802 to your computer and use it in GitHub Desktop.
blog sample
def fib(n):
if n==0:return 0
if n==1:return 1
return fib(n-1)+fib(n-2)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment