Skip to content

Instantly share code, notes, and snippets.

@steelThread
Created July 24, 2012 00:57
Show Gist options
  • Save steelThread/3167256 to your computer and use it in GitHub Desktop.
Save steelThread/3167256 to your computer and use it in GitHub Desktop.
fizzbuzz
(0..100).each do |i|
s = ''
s << 'Fizz' if i % 5 == 0
s << 'Buzz' if i % 7 == 0
puts s.empty? ? i : s
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment