Skip to content

Instantly share code, notes, and snippets.

@joellusky
Created July 26, 2014 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joellusky/d1f49e7c986d762980ed to your computer and use it in GitHub Desktop.
Save joellusky/d1f49e7c986d762980ed to your computer and use it in GitHub Desktop.
(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