table = { 1, 2, 3 } SETMETATABLE(table, { __add = function () return 1 end }) print(table + 5);