[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Syntax questions
- From: "Leo Razoumov" <slonik.az@...>
- Date: Mon, 15 Sep 2008 08:37:11 -0400
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--