Skip to content

Instantly share code, notes, and snippets.

@gmcintire
Created April 21, 2010 18:06
Show Gist options
  • Save gmcintire/374178 to your computer and use it in GitHub Desktop.
Save gmcintire/374178 to your computer and use it in GitHub Desktop.
(1..100).each do |i|
if i % 15 == 0
puts 'FizzBuzz'
elsif i % 5 == 0
puts 'Buzz'
elsif i % 3 == 0
puts "Fizz"
else
puts i
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment