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