Skip to content

Instantly share code, notes, and snippets.

@STAR-ZERO
Created August 8, 2012 01:38
Show Gist options
  • Select an option

  • Save STAR-ZERO/3291281 to your computer and use it in GitHub Desktop.

Select an option

Save STAR-ZERO/3291281 to your computer and use it in GitHub Desktop.
FizzBuzz
(1..100).each{|i| puts i % 15 == 0 ? 'Fizz Buzz' : i % 3 == 0 ? 'Fizz' : i % 5 == 0 ? 'Buzz' : i}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment