Files
setup-beam/test-projects/erlang_rebar3/src/mylib.erl
T
2021-08-03 18:56:12 +01:00

18 lines
353 B
Erlang

%%%-------------------------------------------------------------------
%% @doc mylib public API
%% @end
%%%-------------------------------------------------------------------
-module(mylib).
-export([hello/0]).
-ignore_xref(hello/0).
-spec hello() -> world.
hello() ->
Ret = world,
_ = io:format("~p", [Ret]),
Ret.
%% internal functions