``` local x = {} x.y = 1 -- Unused x.y = 2 x[1] = x.z -- x.z is undefined ``` I can do this, any comments on the idea?
I can do this, any comments on the idea?