-module(helloworld).
-export([add/2,start/0]).
add(X,Y) ->
Z = X+Y,
io:fwrite("~w~n",[Z]).
start() ->
add(5,6).
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266239.html
-module(helloworld).
-export([add/2,start/0]).
add(X,Y) ->
Z = X+Y,
io:fwrite("~w~n",[Z]).
start() ->
add(5,6).
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266239.html