luau/fuzz/basic.luau
2024-12-11 10:56:17 -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})