- 已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
去年关闭了。
Improve this question
Can someone help me figure out why is throwing me that error when I try to run the program?
1条答案
按热度按时间v9tzhpje1#
看起来模块名是
lab06.erl
,所以函数应该是lab06:hello_world().
我不知道IDE是否会自动执行此操作,但很可能需要编译代码并将其加载到VM中。您可以使用
c(lab06).
执行此操作(不过,该文件应该可以从代码路径访问)。