rebar/priv/templates/simplelib.erl

19 lines
174 B
Erlang
Raw Permalink Normal View History

2013-12-19 22:01:25 +00:00
-module({{libid}}).
%% {{libid}}: {{libid}} library's entry point.
-export([my_func/0]).
%% API
my_func() ->
ok().
%% Internals
ok() ->
ok.
%% End of Module.