lua-users home
lua-l archive

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


> Lua doesn't store any info other than the basic stuff that says I'm
> an Integer, I'm a table, I'm userdata. Once you get to that, if the
> writer of the table hasn't provided a name for you, thats it, you've
> got "Table_0x0034fbac" as you identifier. Very useful :-(

What name would you expect for the table created by the code below?

  a = {}
  b = a
  c = b
  a = nil

--lhf