标签: syntax coffeescript
函数名和左括号之间的空格有什么意义?
foo=(x,y)->x*y foo(1,2) # ok foo (1,2) # not ok
上面的最后一行给出了error: unexpected ,。
error: unexpected ,