Skip to content

Instantly share code, notes, and snippets.

@abrongersma
Created April 18, 2013 01:22
Show Gist options
  • Select an option

  • Save abrongersma/5409177 to your computer and use it in GitHub Desktop.

Select an option

Save abrongersma/5409177 to your computer and use it in GitHub Desktop.
class Fixnum
def fibonacci
if self < 2
self
else
(self - 1).fibonacci + (self - 2).fibonacci
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment