各种有用的erlang行为
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

17 rivejä
253 B

-module(pong1).
-behavior(gen_server).
-compile([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}.