Skip to content

Instantly share code, notes, and snippets.

@justinxreese
Created September 16, 2011 15:37
Show Gist options
  • Save justinxreese/1222388 to your computer and use it in GitHub Desktop.
Save justinxreese/1222388 to your computer and use it in GitHub Desktop.
FizzBuzz
1.upto(100){|n|p n%15==0&&"fizzbuzz"||n%5==0&&'buzz'||n%3==0&&'fizz'||''}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment