将模块或脚本加载到 IEx 会话中

如果你有一个灵丹妙药文件; 脚本或模块想要将其加载到当前的 IEx 会话中,你可以使用 c/1 方法:

iex(1)> c "lib/utils.ex"
iex(2)> Utils.some_method

这将在 IEx 中编译和加载模块,你将能够调用它的所有公共方法。

对于脚本,它将立即执行脚本的内容:

iex(3)> c "/path/to/my/script.exs"
Called from within the script!