Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
假设我正在编写一个新模块,代码还没有准备好,我想在 repl 中测试一些东西。我运行iex -S mix但由于我不打算修复的编译错误而失败。
iex -S mix
我认为我的应用程序有一个最后编译的版本,我可以使用iex. 我怎么做?
iex
mix是一个快捷方式mix run。如果你调用mix help run,你会看到那里有很多选项,包括--no-compile一个。所以:
mix
mix run
mix help run
--no-compile
iex -S mix run --no-compile