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