You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
174 B

  1. -module({{libid}}).
  2. %% {{libid}}: {{libid}} library's entry point.
  3. -export([my_func/0]).
  4. %% API
  5. my_func() ->
  6. ok().
  7. %% Internals
  8. ok() ->
  9. ok.
  10. %% End of Module.