Skip to content

Instantly share code, notes, and snippets.

@kuuso
Created August 19, 2014 12:21
Show Gist options
  • Select an option

  • Save kuuso/c229f3b51fba424fd7c4 to your computer and use it in GitHub Desktop.

Select an option

Save kuuso/c229f3b51fba424fd7c4 to your computer and use it in GitHub Desktop.
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