|
|
- -module({{name}}).
-
- %% API exports
- -export([main/1]).
-
- %%====================================================================
- %% API functions
- %%====================================================================
-
- %% escript Entry point
- main(Args) ->
- io:format("Args: ~p~n", [Args]),
- erlang:halt(0).
-
- %%====================================================================
- %% Internal functions
- %%====================================================================
|