Skip to content

Instantly share code, notes, and snippets.

@eprislac
Last active February 24, 2019 00:03
Show Gist options
  • Save eprislac/ed0cf1fdebc20bbfa118e555c1daeeaf to your computer and use it in GitHub Desktop.
Save eprislac/ed0cf1fdebc20bbfa118e555c1daeeaf to your computer and use it in GitHub Desktop.
class Integer
def fizzbuzziness
"#{self % 3 == 0 ? 'Fizz' : ''}#{self % 5 == 0 ? 'Buzz' : ''}"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment