Skip to content

Instantly share code, notes, and snippets.

@sunlee-newyork
Created January 2, 2013 04:43
Show Gist options
  • Save sunlee-newyork/4432244 to your computer and use it in GitHub Desktop.
Save sunlee-newyork/4432244 to your computer and use it in GitHub Desktop.
(1..100).each do |x|
if x % (15) == 0
puts "fizzbuzz"
elsif x % 3 == 0
puts "fizz"
elsif x % 5 == 0
puts "buzz"
else puts x
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment