FizzBuzz
Before we pass to how we can make a FizzBuzz game, we need to know something more basic about Elixir. Today we are going to learn something called Anonymous Function (a.k.a Lambda Expression)
An Anonymous Function is a function without a name and is usually used for applying some sort of transformation to the arguments passed.
According to Wikipedia an Anonymous Function is:
A function definition that is not bound to an identifier.
[Read More]