Erlang Crash Dump正在编写为:erl_crash.dump ...已完成

时间:2016-02-18 07:40:02

标签: intellij-idea erlang

所以我刚开始学习一些基本的Erlang。我正在研究IntelliJ Idea。我写了一个基本函数来添加两个数字:

-module(easy).
-author("var").

%% API
-export([add/2]).

add(X, Y) ->
  X + Y.

然而,当我运行它时,我收到以下错误:

{"init terminating in do_boot",{{badmatch,{error,{1,erl_parse,["syntax error before: ","','"]}}},[{init,start_it,1,[]},{init,start_em,1,[]}]}}

Crash dump is being written to: erl_crash.dump...done
init terminating in do_boot ()

我似乎无法弄清楚为什么会发生这种情况。是否与想法的运行配置有关?

1 个答案:

答案 0 :(得分:4)

不确定如何执行代码。尝试按照这些步骤操作。

创建包含源代码的文件,在本例中为easy.erl,您已经拥有:

[g@somecomp:~/test]$ cat easy.erl 
-module(easy).
-author("var").

%% API
-export([add/2]).

add(X, Y) ->
    X + Y.

现在编译模块:

[g@somecomp:~/test]$ erlc easy.erl

启动Erlang并从shell加载:

[g@somecomp:~/test]$ erl
Erlang/OTP 18 [erts-7.2.1] [source] [64-bit] [smp:4:4] [async-threads:10] [hipe] [kernel-poll:false]

Eshell V7.2.1  (abort with ^G)
1> l(easy).
{module,easy}

在shell中执行该函数并关闭Erlang:

2> easy:add(1,2).
3
3> q().
ok
4> [g@somecomp:~/test]$ 

或者,您可以直接从shell(bashcsh)执行它,但在这种情况下,您必须明确打印出返回值:

[g@somecomp:~/test]$ erlc easy.erl
[g@somecomp:~/test]$ erl -noshell -eval 'io:format("~p~n", [easy:add(1,2)])' -s init stop
3
[g@somecomp:~/test]$