[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Problem with Lua 5 table handling
- From: "Kurt Jung" <kurt.jung@...>
- Date: Sun, 30 Mar 2003 11:19:09 -0500
>Notice how the second time I do table.remove(t,3) it removes 2 not 3
Curious. If one replaces
t[1] = {}
t[2] = {}
t[3] = {}
with
t = {{}, {}, {}}
it works as expected.
Kurt Jung