mirror of
https://github.com/luau-lang/luau.git
synced 2025-03-03 18:51:42 +00:00
7 lines
84 B
Lua
7 lines
84 B
Lua
local function test(t)
|
|
for k,v in pairs(t) do
|
|
print(k,v)
|
|
end
|
|
end
|
|
|
|
test({a = 1})
|