lua-users home
lua-l archive

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


> I already keep myself up at night thinking about which way I
> should access tables.  table.variable or table[variable]

These have different meanings: table.variable is sugar for table['variable'].