Skip to content

Instantly share code, notes, and snippets.

@tsuwatch
Created October 18, 2012 08:31
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 tsuwatch/3910463 to your computer and use it in GitHub Desktop.
Save tsuwatch/3910463 to your computer and use it in GitHub Desktop.
fib.rb
def fib(n)
if n < 2
return n;
else
return fib(n-2) + fib(n-1)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment