How To Use Modules and Functions in Elixir

A brief guide to exploring these concepts

Eduardo Rico Sotomayor
Better Programming
Published in
2 min readSep 27, 2022

--

Taken from https://elixir-lang.org/

In this series, we have used several modules such as String and Map, this time we will see how to create our own modules.

In principle, they are very similar to classes; however, they have no state.

--

--