Skip to content

Instantly share code, notes, and snippets.

@chrisb
Last active August 29, 2015 13:56
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 chrisb/9194302 to your computer and use it in GitHub Desktop.
Save chrisb/9194302 to your computer and use it in GitHub Desktop.
FizzBuzz
(1..100).each { |i|s='';s+='Fizz'if i%3==0;s+='Buzz'if i%5==0;puts s==''?i:s }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment