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