Erlang列表
返回列表中具有最大值的元素。
max(lst1)
Lst1 ?元素列表。
-module(helloworld). -import(lists,[max/1]). -export([start/0]). start() -> Lst1 = [1,2,3,4], io:fwrite("~w~n",[max(Lst1)]).
當我們運行上面的程序時,我們將得到以下結(jié)果。
4