Skip to content

Instantly share code, notes, and snippets.

@kobaken0029
Created April 21, 2016 07:20
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 kobaken0029/28783bae0e3cdf4438f54c6e34d69fa0 to your computer and use it in GitHub Desktop.
Save kobaken0029/28783bae0e3cdf4438f54c6e34d69fa0 to your computer and use it in GitHub Desktop.
rubyでワンライナーfizzbuzz
1.upto(100){|i|puts i%15==0?'fizzbuzz':i%5==0?'buzz':i%3==0?'fizz':i}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment