Skip to content

Instantly share code, notes, and snippets.

Created December 25, 2012 18:17
Show Gist options
  • Save anonymous/4374598 to your computer and use it in GitHub Desktop.
Save anonymous/4374598 to your computer and use it in GitHub Desktop.
1.upto(100){|n|
(f=1;print"Fizz")if n%3==0
(f=1;print"Buzz")if n%5==0
print n if !f
puts}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment