Skip to content

Instantly share code, notes, and snippets.

@jessieay
Created June 14, 2012 19:04
Show Gist options
  • Save jessieay/2932248 to your computer and use it in GitHub Desktop.
Save jessieay/2932248 to your computer and use it in GitHub Desktop.
Fibonacci, a little prettier this time
class Integer
def fibonacci
first = 0
last = 1
(self-1).times do
current = first + last
first = last
last = current
end
return last
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment