FuzzBuzz Solution for Ruby
(1..100).each do |x| puts "#{x}: #{ x % 3 == 0 ? 'fuzz' : ''}#{ x % 5 == 0 ? 'buzz' : ''}" end