Current section

Files

Jump to
gleam_test src hello_joe.erl
Raw

src/hello_joe.erl

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