I am new to Elixir. While going through Elixir School online in the functions section, I found Anonymous Functions
. In Anonymous Functions, the function definition is as follows
iex> sum = fn (a, b) -> a + b end
iex> sum.(2, 3)
5
My question is what is the importance of .
used while calling Anonymous functions?