各种有用的erlang行为
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 

17 行
271 B

-module(pong1).
-behavior(gen_server).
-compile([export_all, nowarn_export_all]).
start() ->
gen_server:start(?MODULE, 0, []).
init(_Args) ->
{ok, 0}.
handle_call(ping, _From, State) ->
{reply, pong, State}.
handle_cast(_Msg, State) ->
{noreply, State}.