Packages

A package that prints hello!

Current section

Files

Jump to
hello_joe src hello_joe.erl
Raw

src/hello_joe.erl

-module(hello_joe).
-compile([no_auto_import, nowarn_unused_vars, nowarn_unused_function, nowarn_nomatch]).
-export([main/0]).
-spec main() -> nil.
main() ->
gleam@io:println(<<"Hello Joe!"/utf8>>),
gleam@io:println(<<"Hello Mike!"/utf8>>).