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.