Current section

Files

Jump to
glacier src glacier_demo@hello.erl
Raw

src/glacier_demo@hello.erl

-module(glacier_demo@hello).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([function_1/0]).
-if(?OTP_RELEASE >= 27).
-define(MODULEDOC(Str), -moduledoc(Str)).
-define(DOC(Str), -doc(Str)).
-else.
-define(MODULEDOC(Str), -compile([])).
-define(DOC(Str), -compile([])).
-endif.
?MODULEDOC(false).
-file("src/glacier_demo/hello.gleam", 3).
?DOC(false).
-spec function_1() -> binary().
function_1() ->
glacier_demo@glacier_demo_module_a:function_1(),
<<"hello"/utf8>>.