我对 Erlang 非常陌生,我正在尝试编译我的第一个 Erlang 模块并且收到一个错误,即不存在这样的文件,尽管它确实存在。
useless.erl
非常感谢任何关于为什么我 erl.exe 无法编译的建议。
提前谢谢了!
erl.exe 命令提示符(注意模块实际上包含 useless.erl)
1> filename:absname("C:/Users/modules").
"C:/Users/modules"
2> c(useless).
useless.erl:none: no such file or directory
(没用的.erl)
-module(useless).
-export([add/2, hello/0, greet_and_add_two/1]).
add(A,B) ->
A + B.
%% Shows greetings.
%% io:format/1 is the standard function used to output text.
hello() ->
io:format("Hello, world!~n").
greet_and_add_two(X) ->
hello(),
add(X,2).