> 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.