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