luau/fuzz/basic.luau
2024-12-08 16:48:54 -05:00

7 lines
84 B
Text

local function test(t)
for k,v in pairs(t) do
print(k,v)
end
end
test({a = 1})