-module(helloworld).
-import(lists,[delete/2]).
-export([start/0]).
start() ->
Lst1 = [1,2,3],
Lst2 = delete(2,Lst1),
io:fwrite("~w~n",[Lst2]).
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266294.html
-module(helloworld).
-import(lists,[delete/2]).
-export([start/0]).
start() ->
Lst1 = [1,2,3],
Lst2 = delete(2,Lst1),
io:fwrite("~w~n",[Lst2]).
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266294.html