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