Skip to content

Instantly share code, notes, and snippets.

@pwgustafson
Created December 11, 2013 00:22
Show Gist options
  • Save pwgustafson/7902945 to your computer and use it in GitHub Desktop.
Save pwgustafson/7902945 to your computer and use it in GitHub Desktop.
1.upto(100).each do |i|
if (i%3==0 && i%5==0)
p "FizzBuzz"
elsif i%3==0
p "Fizz"
elsif i%5==0
p "Buzz"
else
p i
end
end
@pwgustafson
Copy link
Author

I made a mistake on like 6, I previously had i%5==5

@bdmac
Copy link

bdmac commented Dec 11, 2013

Cool, thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment