lua-users home
lua-l archive

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


It was thus said that the Great Thiago L. once stated:
> 
> I want something like |local v = t?t1?t2?t3|... (actually I want |local 
> v = t?.t1?.t2?.t3|...)

  Okay, given that

	t.t1

is the same as

	t['t1']

Therefore:

	t?['t1']?['t2']?['t3']

?

  -spc