[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: inline conditional assignment possible?
- From: Taj Khattra <taj.khattra@...>
- Date: Wed, 19 Nov 2003 17:11:24 -0800
On Wed, Nov 19, 2003 at 03:56:21PM -0800, Bilyk, Alex wrote:
> On the other hand I am surprised one can not say something along the lines
>
> print({a=1}.a)
>
need an extra pair of parentheses (probably to disambiguate ?)
% lua
Lua 5.0 Copyright (C) 1994-2003 Tecgraf, PUC-Rio
> =({a=1729}).a
1729
>
-taj