priv/templates/simplelib.erl (10 lines of code) (raw):

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