lua-users home
lua-l archive

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


> a={}; b={}; c={}
> a[1000]=1
> b[1] = 2; b[1000] = 1; b[1] = nil

> The question is, if lua allocates memory for the 1. until 999. numerical keys of the table a (because the first valid key is 1000), or not=?

No.