Upgrade to Pro — share decks privately, control downloads, hide ads and more …

美しいショートコーディングの世界

Sponsored · SiteGround - Reliable hosting with speed, security, and support you can count on.
Avatar for hiroki.saito hiroki.saito
December 24, 2016

 美しいショートコーディングの世界

社内LTやとあるイベントのLTで使用したショートコーディングの紹介スライド

Avatar for hiroki.saito

hiroki.saito

December 24, 2016
Tweet

More Decks by hiroki.saito

Other Decks in Programming

Transcript

  1. <? // 143byte for($i=1;$i<=30;$i++){ if($i%3 == 0 && $i%5 ==

    0){ echo "FizzBuzz\n"; } else if($i%3 == 0){ echo "Fizz\n"; } else if($i%5 == 0){ echo "Buzz\n"; } else { echo "{$i}\n"; } }