Skip to content

Instantly share code, notes, and snippets.

@vpivo
Created July 21, 2014 17:50
Show Gist options
  • Save vpivo/20e62092f5a20d1bb626 to your computer and use it in GitHub Desktop.
Save vpivo/20e62092f5a20d1bb626 to your computer and use it in GitHub Desktop.
FizzBuzz Code Golf
1.upto(100) { |i| puts i%3==0?i%5==0?"FizzBuzz":"Fizz":i%5==0?'Buzz':i}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment