mirror of
https://github.com/erlef/setup-beam.git
synced 2026-07-29 19:20:49 +00:00
18 lines
353 B
Erlang
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
|