13 lines
183 B
Erlang
13 lines
183 B
Erlang
%% Implemented by Arjun Sunel
|
|
-module(even_odd2).
|
|
-export([main/0]).
|
|
|
|
main()->
|
|
test(10).
|
|
|
|
test(N) ->
|
|
if (N band 1)==1 ->
|
|
io:format("odd\n");
|
|
true ->
|
|
io:format("even\n")
|
|
end.
|