我在同一个 src 文件夹中的两个模块。mod1 声明了我希望在模块 mod2 中使用的函数:
-module(mod1).
-export([myfunc/1]).
myfunc(A) -> {ok}.
在其他模块中,我不导入 mod1:
-module(mod2).
如果我mod1:
在 mod2 中执行“”,它会识别“myfunc”,问题是在运行时当我调用mod1:myfunc(A)
我得到“未定义的函数 mod1:myfunc/1”
如果智能感知在 mod2 中检测到我的 mod1 函数,我不明白为什么会出错?