DEV Community

Tzelon Machluf
Tzelon Machluf

Posted on

Recompile Elixir Module in iex

When you want to view your changes for a module iex can recompile it on the fly.

Loading a source file with MyModule

> iex <<path to your file>>

Recompile the module's source file

iex> r MyModule

Top comments (0)