lua-users home
lua-l archive

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


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