Skip to content

Instantly share code, notes, and snippets.

@pumpkincouture
Last active August 29, 2015 14:04
Show Gist options
  • Save pumpkincouture/d283e2333f1254034a7b to your computer and use it in GitHub Desktop.
Save pumpkincouture/d283e2333f1254034a7b to your computer and use it in GitHub Desktop.
class FizzBuzzGame
def run(x,y)
for i in x..y
if i%5==0 && i%3==0
puts "FizzBuzz"
elsif i%3==0
puts "Fizz"
elsif i%5==0
puts "Buzz"
else
puts i
end
end
return y
end
end
game=FizzBuzzGame.new
game.run(1,30)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment