You are viewing a single comment's thread. Return to all comments →
Erlang solution:
main() -> L = fun F(Acc) -> case io:fread("", "~d") of eof -> Acc; {ok, [N]} -> F(Acc+1) end end, io:fwrite("~p", [L(0)]).
Seems like cookies are disabled on this browser, please enable them to open this website
List Length
You are viewing a single comment's thread. Return to all comments →
Erlang solution: