function math.order(x, y) -- might change to arbitrary args later, but now now ... this is just the simple impl written for the quarry if not x or not y then return nil end if x <= y then return x, y else return y, x end end