So I straight up copy and pasted the code from the Erlang docs: https://erlang.org/doc/reference_manual/modules.html#module-syntax
救命啊!
igsr9ssn1#
The module didn't compiled. To fix it try this in the Erlang shell (eshell):
1> c(m). ok 2> m:fact(1). 1
See documentation on how code loading works.
mm5n2pyu2#
exception error: undefined shell command几乎总是意味着shell环境没有预期的功能,这也可能意味着包含其定义的模块还没有为我们编写和执行的所有代码加载。您可以故意尝试拼错一些自动加载的BIF(s),例如“length1”,您仍然会看到相同的消息显示。
exception error: undefined shell command
2条答案
按热度按时间igsr9ssn1#
The module didn't compiled. To fix it try this in the Erlang shell (eshell):
See documentation on how code loading works.
mm5n2pyu2#
exception error: undefined shell command
几乎总是意味着shell环境没有预期的功能,这也可能意味着包含其定义的模块还没有为我们编写和执行的所有代码加载。您可以故意尝试拼错一些自动加载的BIF(s),例如“length1”,您仍然会看到相同的消息显示。