mirror of
https://github.com/correl/rebar.git
synced 2024-11-15 03:00:18 +00:00
10 lines
110 B
Erlang
10 lines
110 B
Erlang
-module({{modid}}).
|
|
|
|
-export([my_func/0]).
|
|
|
|
-ifdef(TEST).
|
|
-compile(export_all).
|
|
-endif.
|
|
|
|
my_func() ->
|
|
ok.
|