Private Functions

Understand private functions and usage of the pipe operator in Elixir.

We'll cover the following...

The defp macro defines a private function, one that can be called only within the module that declares it. We can define private functions with multiple heads, just as we ...