Skip to content

Instantly share code, notes, and snippets.

@sranso
Created November 15, 2013 05:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sranso/7479514 to your computer and use it in GitHub Desktop.
Save sranso/7479514 to your computer and use it in GitHub Desktop.
not my fizzbuzz
#http://rosettacode.org/wiki/FizzBuzz#Ruby
1.upto(100) do |n|
print "Fizz" if a = (n % 3).zero?
print "Buzz" if b = (n % 5).zero?
print n unless (a || b)
print "\n"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment