RosettaCodeData/Task/FizzBuzz/Ruby/fizzbuzz-11.rb

9 lines
158 B
Ruby
Raw Permalink Normal View History

2015-11-18 06:14:39 +00:00
class Integer
def fizzbuzz
v = "#{"Fizz" if self % 3 == 0}#{"Buzz" if self % 5 == 0}"
v.empty? ? self : v
end
2015-02-20 00:35:01 -05:00
end
2015-11-18 06:14:39 +00:00
puts *(1..100).map(&:fizzbuzz)