|
Well, it’s true that a “true” Lua array (a sequence) cannot contain a nil value, but if you maintain your own top-of-stack (aka array size), then there is no reason why you cannot have nil as the value of some elements… t = { “a”, “b”, “c” } t.len = 3 t[2] = nil —Tim |