lua-users home
lua-l archive

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


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