Skip to content

Instantly share code, notes, and snippets.

@gustavoguimaraes
Created November 15, 2013 05:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gustavoguimaraes/8e44870d0b55f36a6e3d to your computer and use it in GitHub Desktop.
Save gustavoguimaraes/8e44870d0b55f36a6e3d to your computer and use it in GitHub Desktop.
101.times do | i |
if i % 3 == 0 && i % 5 == 0
puts "fizzbuzz"
elsif i % 3 == 0
puts "fizz"
elsif i % 5 == 0
puts "buzz"
else
puts i
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment