[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [ANN] Lua 5.2.0 (alpha) now available
- From: steve donovan <steve.j.donovan@...>
- Date: Sat, 11 Dec 2010 11:49:16 +0200
> table.insert(t, 1)
> table.insert(t, nil)
> table.insert(t, 3)
why not just?
t[1] = 1
t[3] = 3
I think we've become accustomed to table.insert(t,nil) being a no-op...
steve d.