1 2 3 4 5 6 7 8 9 10
-module({{modid}}). -export([my_func/0]). -ifdef(TEST). -compile(export_all). -endif. my_func() -> ok.