1 2 3 4 5 6 7 8 9
local t = setmetatable({}, { __newindex = function(t, k, v) print(t, k, v) end }) -- table.insert(t, "hello") t[1] = "hello"