lua-users home
lua-l archive

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


D Burgess wrote:
I find myself often coding table variables with a name of "in".
e.g.
 counters = {in=1, out=2}
Does anyone know how difficult this would be to change?

counters = { ["in"] = 1, ["out"] = 2 }

D.