3 lines
76 B
Erlang
3 lines
76 B
Erlang
test({N,M}) when N > M -> M;
|
|
test({N,M}) when N < M -> N;
|
|
test(_) -> equal.
|