Erlang列表
返回List的第N個元素。
nth(N,List)
N ?要從列表中返回的第n個值。
Lst ?元素列表。
-module(helloworld). -import(lists,[nth/2]). -export([start/0]). start() -> Lst1 = [1,2,3], io:fwrite("~p~n",[nth(2,Lst1)]).
當(dāng)我們運行上面的程序時,我們將得到以下結(jié)果。
2