coffeescript
for num in [1..100] do (num) -> console.log( switch when (num % 15 == 0) then "fizzbuzz" when (num % 3 == 0) then "fizz" when (num % 5 == 0) then "buzz" else num )これは、以下のJavaScriptにコンパイルされる。 (function() { var num, _fn; _fn…
for num in [1..100] do (num) -> console.log( switch when (num % 15 == 0) then "fizzbuzz" when (num % 3 == 0) then "fizz" when (num % 5 == 0) then "buzz" else num )これは、以下のJavaScriptにコンパイルされる。 (function() { var num, _fn; _fn…