-module(helloworld).
-export([add/1,start/0]).
add(X) when X>3 ->
io:fwrite("~w~n",[X]).
start() ->
add(4).
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266251.html
-module(helloworld).
-export([add/1,start/0]).
add(X) when X>3 ->
io:fwrite("~w~n",[X]).
start() ->
add(4).
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266251.html