5 lines
83 B
Lua
5 lines
83 B
Lua
function div(a,b)
|
|
quot = a/b
|
|
if quot == 1/0 then error() end
|
|
return quot
|
|
end
|