CoffeeScript

square = (x) -> x * x

↓コンパイル結果

square = function(x) {
return x * x;
};