aboutsummaryrefslogtreecommitdiff
path: root/test/tests/valid_snippits/string.lua
blob: 769d528aac112769d98845dc0c9fb71d91abea58 (plain)
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")