对元素列表进行排序。
sort - 语法
sort(lst)
Lst - 需要排序的元素列表。
sort - 返回值
返回元素的排序列表。
-module(helloLearnfk). -import(lists,[sort/1]). -export([start/0]). start() -> Lst1=[5,6,4], io:fwrite("~p~n",[sort(Lst1)]).
当我们运行上述程序时,我们将得到以下输出。
[4,5,6]
参考链接
https://www.learnfk.com/erlang/erlang-sort.html
标签:sort,erlang,Erlang,Lst1,无涯,列表,start,排序 From: https://blog.51cto.com/u_14033984/8695169