Skip to content

Instantly share code, notes, and snippets.

@tlux
Last active October 6, 2015 12:08
Show Gist options
  • Save tlux/2991302 to your computer and use it in GitHub Desktop.
Save tlux/2991302 to your computer and use it in GitHub Desktop.
Even/Odd Numbers
class Fixnum
def even?
(self % 2).zero?
end
def odd?
!even?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment