Skip to content

Instantly share code, notes, and snippets.

@denysonique
Created August 29, 2012 09:13
Show Gist options
  • Save denysonique/3508895 to your computer and use it in GitHub Desktop.
Save denysonique/3508895 to your computer and use it in GitHub Desktop.
FizzBuzz
1.upto(100).each do |i|
unless i % 3 == 0 or i % 5 == 0
print i
else
print 'Fizz' if i % 3 == 0
print 'Buzz' if i % 5 == 0
end
puts
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment