-module(prog).
 
-export([main/1]).
 
main([H|T]) ->
    io:fwrite("arg: ~s~n", [H]),
    main(T);
main([]) -> ok.