mirror of
https://github.com/erlef/setup-beam.git
synced 2026-08-01 03:26:08 +00:00
Add Gleam (#67)
This commit is contained in:
committed by
GitHub
parent
4fbbcf2e6c
commit
c988d89031
@@ -0,0 +1,17 @@
|
||||
%%%-------------------------------------------------------------------
|
||||
%% @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
|
||||
Reference in New Issue
Block a user