/ Published in: Other
Expand |
Embed | Plain Text
-module(prog). -export([main/1]). main([H|T]) -> io:fwrite("arg: ~s~n", [H]), main(T); main([]) -> ok.
You need to login to post a comment.
-module(prog). -export([main/1]). main([H|T]) -> io:fwrite("arg: ~s~n", [H]), main(T); main([]) -> ok.
You need to login to post a comment.