各种有用的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 lines
223 B

-module(pong3).
-behavior(gen_apu).
-compile([export_all, nowarn_export_all]).
start() ->
gen_apu:start(?MODULE, 0, []).
init(_Args) ->
{ok, 0}.
mPing(_State, _From) ->
{reply, pong}.
mPing(_State) ->
kpS.