Skip to content

Instantly share code, notes, and snippets.

@havenwood
Created September 13, 2011 02:26
Show Gist options
  • Save havenwood/1213011 to your computer and use it in GitHub Desktop.
Save havenwood/1213011 to your computer and use it in GitHub Desktop.
FizzBuzz
1.upto 100 do |n|
r = ""
r << "fizz" if n % 3 == 0
r << "buzz" if n % 5 == 0
r << n.to_s if r.empty?
puts r
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment