summaryrefslogtreecommitdiff
path: root/scratch/new_index.lua
blob: 3aa6a91eff44b258a273c95a2ffe9afe543e8948 (plain)
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"