19 lines
170 B
Lua
Raw Normal View History

2023-01-09 23:49:16 +08:00
local a = {
'test1',
'test2',
'test3'
}
2023-01-09 15:37:58 +08:00
2023-01-10 14:40:28 +08:00
local function test(tmp)
tmp = {
'bbbbbb'
}
end
test(a)
for i, v in ipairs(a) do
print(v)
end