我是Elixir的新手。我正在嘗試在模塊中運行一個函數。我在文件中的代碼如下: warning: variable "greeter" does not exist and is being expanded to "greeter()", please use parentheses to remove the ambiguity or change the variable name
fun
匿名函數我是新來Elixir。雖然在功能部分經歷Elixir School網上,我發現Anonymous Functions。在匿名函數,函數定義如下 iex> sum = fn (a, b) -> a + b end
iex> sum.(2, 3)
5
我的問題是什麼是.一邊撥打匿名函數使用的重要性?