[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: LUA Vs Javascript
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Mon, 30 Jun 2008 08:40:33 -0300
> 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