5 lines
74 B
OCaml
5 lines
74 B
OCaml
|
|
fun div_check (x, y) = (
|
||
|
|
ignore (x div y);
|
||
|
|
false
|
||
|
|
) handle Div => true
|