各种有用的erlang行为
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

17 行
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.