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