8 lines
80 B
Text
8 lines
80 B
Text
def div_check(x, y)
|
|
try
|
|
(x / y)
|
|
return false
|
|
catch
|
|
return true
|
|
end
|
|
end
|