Skip to content

Instantly share code, notes, and snippets.

@nixsticks
Created November 15, 2013 01:30
Show Gist options
  • Save nixsticks/7477662 to your computer and use it in GitHub Desktop.
Save nixsticks/7477662 to your computer and use it in GitHub Desktop.
(1..100).each{|i|
x = ''
x += 'Fizz' if i%3==0
x += 'Buzz' if i%5==0
puts(x.empty? ? i : x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment