Skip to content

Instantly share code, notes, and snippets.

@seyhunak
Forked from anonymous/gist:4374598
Created December 25, 2012 21:03
Show Gist options
  • Save seyhunak/4375450 to your computer and use it in GitHub Desktop.
Save seyhunak/4375450 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