标签: erlang fsm
任何人都可以告诉我如何根据此代码绘制FSM
machine()-> 接收 {add,P}->接收{X,Y}-> P!(X + Y),machine()结束; {sub,P}->接收{X,Y}-> P!(X-Y),machine()结束 结束。