lua-users home
lua-l archive

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


On 9/11/08, Roberto Ierusalimschy <roberto@inf.puc-rio.br> wrote:
>
>  [..snip..]
>
>  That would create ambiguities in the next fragment:
>
>   a = i
>   {f, g, h}[1]("hi")
>
>  It could mean any of these:
>
>   a = i; {f, g, h}[1]("hi")
>   a = i{f, g, h}[1]("hi")
>

I am sorry but I do not understand the meaning of the last statement

  a = i{f, g, h}[1]("hi")

Specifically, what does  i{f, g, h}  mean?

--Leo--