Skip to content

Instantly share code, notes, and snippets.

@mgamba
Created July 6, 2015 19:56
Show Gist options
  • Save mgamba/e4b508a2c7180ece0a16 to your computer and use it in GitHub Desktop.
Save mgamba/e4b508a2c7180ece0a16 to your computer and use it in GitHub Desktop.
fizzbuzz
1.upto(100){|n|print ((n%3==0&&'FIZZ'||'')+(n%5==0&&'BUZZ'||'')).downcase!||n}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment