summaryrefslogtreecommitdiff
path: root/priv/templates/escript_mod.erl
diff options
context:
space:
mode:
Diffstat (limited to 'priv/templates/escript_mod.erl')
-rw-r--r--priv/templates/escript_mod.erl17
1 files changed, 17 insertions, 0 deletions
diff --git a/priv/templates/escript_mod.erl b/priv/templates/escript_mod.erl
new file mode 100644
index 0000000..f8a779b
--- /dev/null
+++ b/priv/templates/escript_mod.erl
@@ -0,0 +1,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
+%%====================================================================