各种有用的erlang行为
Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 

17 righe
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}.