Skip to content

Instantly share code, notes, and snippets.

@kobaken0029
Created April 21, 2016 07:19
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/408e7522e3b818d6c750ee5fa677213e to your computer and use it in GitHub Desktop.
Save kobaken0029/408e7522e3b818d6c750ee5fa677213e to your computer and use it in GitHub Desktop.
perlでワンライナーfizzbuzz
map{print(($_%15==0?'fizzbuzz':$_%3==0?'fizz':$_%5==0?'buzz':$_)."\n")}1..100;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment