-module(helloworld).
-import(lists,[sort/1]).
-export([start/0]).
start() ->
Lst1=[5,6,4],
io:fwrite("~p~n",[sort(Lst1)]).
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266305.html
-module(helloworld).
-import(lists,[sort/1]).
-export([start/0]).
start() ->
Lst1=[5,6,4],
io:fwrite("~p~n",[sort(Lst1)]).
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266305.html