Erlang列表
返回列表中元素的总和。
sum(lst)
Lst −元素列表。
-module(helloworld). -import(lists,[sum/1]). -export([start/0]). start() -> Lst1 = [5,6,4], io:fwrite("~p~n",[sum(Lst1)]).
当我们运行上面的程序时,我们将得到以下结果。
15