./area_server0.erl:6: Warning: wrong number of arguments in format call
./area_server0.erl:12: Warning: wrong number of arguments in format call
出现这种警告竟然是因为在用标准IO库的时候没有~p~n
比如:io:format("fuckme! ~p~n",[Other]), 这就是对的
io:format("fuckme",[Other]), 这就有警告 。。 额 很不习惯Erlang的约定