lua-users home
lua-l archive

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




2011/10/21 Duncan Cross <duncan.cross@gmail.com>
On Thu, Oct 20, 2011 at 11:18 PM, KR <krunal.rao78@gmail.com> wrote:
> local t = {}
> t.1 = 3 -- why not t["1"] = 3 ?

What about t.1.3 - would you expect that to be t["1.3"] or t["1"]["3"]?

Or t[1][3]?