Skip to content

Instantly share code, notes, and snippets.

@sesharim
Created March 30, 2015 14:40
Show Gist options
  • Save sesharim/29b61337ba86cd0a97c4 to your computer and use it in GitHub Desktop.
Save sesharim/29b61337ba86cd0a97c4 to your computer and use it in GitHub Desktop.
fib
def fib(n)
n < 2 ? n : fib(n-1) + fib(n-2)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment