summaryrefslogtreecommitdiff
path: root/priv/templates/escript_mod.erl
blob: dd2feb8eed1f4134d63a438394d7aaefed174c55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
-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
%%====================================================================