2023-01-09 23:20:56 +08:00

9 lines
61 B
Lua

local a = 'test'
local b = a
b = b .. 'test'
print(a, b)