luau/fuzz/basic.luau
2025-02-28 14:01:49 -08: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})