lua-users home
lua-l archive

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


On 04/25/2014 11:21 AM, Coroutines wrote:
I'd like to be able to write some_table.end = 3 -- currently not possible :(

Just write some_table["end"] = 3, of course that's a bit longer and not as nice. I sometimes wish for some_table.1 (some_table["1"]) as well.
--
Thomas