Skip to content

Instantly share code, notes, and snippets.

@masui
Created April 27, 2012 14:36
Show Gist options
  • Save masui/2509757 to your computer and use it in GitHub Desktop.
Save masui/2509757 to your computer and use it in GitHub Desktop.
(1..100).each { |i|
s = ''
s += 'Fizz' if i % 3 == 0
s += 'Buzz' if i % 5 == 0
s = i.to_s if s == ''
puts s
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment