View difference between Paste ID: QUURrL8S and jw6EjWP5
SHOW: | | - or go back to the newest paste.
1
local vars = {
2
	first = "foo",
3
	second = "bar",
4-
	third = "foobar",
4+
5
6
vars.third = vars.first .. vars.second
7
8
print(vars.third) -- > "foobar"
9
print(vars["third"]) -- > "foobar"