rebar/priv/templates/simplelib.erl
2013-12-19 23:05:49 +00:00

18 lines
174 B
Erlang

-module({{libid}}).
%% {{libid}}: {{libid}} library's entry point.
-export([my_func/0]).
%% API
my_func() ->
ok().
%% Internals
ok() ->
ok.
%% End of Module.