Craig Everett c7d7cda7c2 Bug fixes
- Support IPv4-only systems
- Fix "~" log message crash in tell/2,3
2022-11-21 09:58:36 +09:00

18 lines
329 B
Erlang
Executable File

#! /usr/bin/env escript
%%% 〘*PROJECT NAME*〙
-mode(compile).
*SCRIPT*
*AUTHOR*
*COPYRIGHT*
*LICENSE*
-spec main(Args :: [term()]) -> no_return().
main(Args) ->
ok = io:setopts([{encoding, unicode}]),
ok = io:format("Hello, world!~n"),
io:format("I received the args: ~tp~n", [Args]).