Created
December 15, 2017 00:32
-
-
Save Zerquix18/d81203151c527614795a5b37459d8f40 to your computer and use it in GitHub Desktop.
Shortest PHP Fizzbuzz
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
for($i=0;$i<1e2;)echo((++$i%3?'':'Fizz').($i%5?'':'Buzz')?:$i),"\n"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment