-module(helloworld).
-export([start/0]).
start() ->
N = 9,
if
N > 10 ->
io:fwrite("N is greater than 10");
true ->
io:fwrite("N is less than 10")
end.
原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266337.html