mirror of
https://github.com/luau-lang/luau.git
synced 2024-11-15 06:15:44 +08:00
d01addc625
Co-authored-by: Rodactor <rodactor@roblox.com>
8 lines
84 B
Lua
8 lines
84 B
Lua
local function test(t)
|
|
for k,v in pairs(t) do
|
|
print(k,v)
|
|
end
|
|
end
|
|
|
|
test({a = 1})
|