2023-01-10 14:40:28 +08:00

19 lines
170 B
Lua

local a = {
'test1',
'test2',
'test3'
}
local function test(tmp)
tmp = {
'bbbbbb'
}
end
test(a)
for i, v in ipairs(a) do
print(v)
end