Skip to content

Instantly share code, notes, and snippets.

@andyweiss1982
Created July 26, 2014 03:08
Show Gist options
  • Save andyweiss1982/5bdfa62daed28e63671d to your computer and use it in GitHub Desktop.
Save andyweiss1982/5bdfa62daed28e63671d to your computer and use it in GitHub Desktop.
FizzBuzz
(1..100).each { |i|
if i % 3 == 0 and i % 5 !=0
i = "Fizz"
elsif i % 5 == 0 and i % 3 != 0
i = "Buzz"
elsif i % 3 == 0 and i % 5 == 0
i = "FizzBuzz"
end
puts i
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment