文中所有操作均在Mac下完成,Windows可能略有出入,且作参考。
erlang Shell
进入erlang shell
- 终端输入
erl
退出erlang shell(四种方式任选其一)
- shell输入
init:stop().
- shell输入
halt().
-
ctl+c
,然后输入a
-
ctl+G
,然后输入q
注:是ctl
不是cmd
,笔者刚开始一直按cmd
没反应。
编译文件shine.erl
,运行文件中的sayHello
函数
从命令行进入shine.erl所在目录后输入erl
进入erlang shell,然后输入如下命令:
Eshell V6.2.1 (abort with ^G)
1> c(shine).
{ok,shine}
2> shine:sayHello().
hello
导出全部函数
-compile(export_all).
网友评论
-compile(export_all).