1 2 3 4 5 6 7 8
local string = "what" local tbl = {} local tbl2 = {} tbl[string] = 10 tbl2.what = 10 assert(tbl.what == tbl2[string],"Not equal")