blob: f8a779ba6c165aebbdbc40940ee332409abe999b (
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
%%====================================================================
|