1 2 3 4 5 6 7 8
local mt = {} mt.__index = mt mt.type = 'dots' return function () local self = setmetatable({}, mt) return self end