local function div(a,b) if b == 0 then error() end return a/b end