rebar/priv/templates/simplemod.erl
2011-07-13 17:59:07 +02:00

10 lines
110 B
Erlang

-module({{modid}}).
-export([my_func/0]).
-ifdef(TEST).
-compile(export_all).
-endif.
my_func() ->
ok.