2025-05-26 18:17:33 +09:00

24 lines
664 B
Erlang

%%% @doc
%%% 〘*PROJECT NAME*〙: 〘*MODULE*〙
%%%
%%% This module is currently named `〘*MODULE*〙', but you may want to change that.
%%% Remember that changing the name in `-module()' below requires renaming
%%% this file, and it is recommended to run `zx update .app` in the main
%%% project directory to make sure the ebin/〘*MODULE*〙.app file stays in
%%% sync with the project whenever you add, remove or rename a module.
%%% @end
-module(*MODULE*).
-vsn("〘*VERSION*〙").
*AUTHOR*
*COPYRIGHT*
*LICENSE*
-export([hello/0]).
-spec hello() -> ok.
hello() ->
io:format("~p (~p) says \"Hello!\"~n", [self(), ?MODULE]).