Skip to content

Instantly share code, notes, and snippets.

@aguayma
Created January 19, 2015 16:08
Show Gist options
  • Save aguayma/cdaafc20354707213707 to your computer and use it in GitHub Desktop.
Save aguayma/cdaafc20354707213707 to your computer and use it in GitHub Desktop.
Syntax
(1..100).each do |n|
case
when (n % 3 == 0) && (n % 5 == 0)
puts "FIZZBUZZ"
when n % 3 == 0
puts "Fizz"
when n % 5 == 0
puts "Buzz"
else
puts n
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment