Skip to content

Instantly share code, notes, and snippets.

@radavis
Created August 21, 2013 22:45
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 radavis/6301193 to your computer and use it in GitHub Desktop.
Save radavis/6301193 to your computer and use it in GitHub Desktop.
Fun times with FizzBuzz
(1..100).each do |i|
print 'Fizz' if i % 3 == 0
print 'Buzz'if i % 5 == 0
print i if i % 3 != 0 and i % 5 != 0
puts
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment