Created
August 19, 2014 12:21
-
-
Save kuuso/c229f3b51fba424fd7c4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| END{for(;i<50;)printf++i%5?i%3?i:"fizz":i%3?"buzz":"FIZZBUZZ"} | |
| # gawk:62文字 | |
| # ポイント | |
| # ・++iのおかげでprintfが'('無しでparseできる。 | |
| # ・awkの変数は文字列と数値両方の型を持つので、3項演算子の引数の iは | |
| # 文字列とみなしてparseしてくれている。 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment