Skip to content

Instantly share code, notes, and snippets.

@dmehrotra
Last active December 21, 2015 11:19
Show Gist options
  • Save dmehrotra/6297979 to your computer and use it in GitHub Desktop.
Save dmehrotra/6297979 to your computer and use it in GitHub Desktop.
fizzBuzz
(1..100).each do |x|
if x % 3 == 0 && x % 5 == 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