lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


```
local mt = {}
mt.__newindex = mt
local t = setmetatable({}, mt)
t[1] = 1
```



actboy168@gmail.com