2 lines
71 B
Standard ML
2 lines
71 B
Standard ML
fun even( x: int ) = (x mod 2 = 0);
|
|
fun odd( x: int ) = (x mod 2 = 1);
|
fun even( x: int ) = (x mod 2 = 0);
|
|
fun odd( x: int ) = (x mod 2 = 1);
|