[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: table.getn in Lua 5.0.2/3
- From: Shmuel Zeigerman <shmuz@...>
- Date: Thu, 14 Sep 2006 12:38:26 +0200
It seems to not behave in accordance with the Lua 5.0 docs:
t = {}
table.insert(t, "a")
t[1] = nil
print (table.getn(t))
> 1
--
Shmuel