各种有用的erlang行为
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
271 B

4 년 전
4 년 전
4 년 전
4 년 전
4 년 전
  1. -module(pong1).
  2. -behavior(gen_server).
  3. -compile([export_all, nowarn_export_all]).
  4. start() ->
  5. gen_server:start(?MODULE, 0, []).
  6. init(_Args) ->
  7. {ok, 0}.
  8. handle_call(ping, _From, State) ->
  9. {reply, pong, State}.
  10. handle_cast(_Msg, State) ->
  11. {noreply, State}.