local lib = {} function lib.create() local array = {} return setmetatable(array,{ __add=function(t1, t2) end }) end