1
0
Fork 0
mirror of https://github.com/luau-lang/luau.git synced 2025-03-05 03:31:41 +00:00
luau/fuzz/basic.lua

8 lines
84 B
Lua
Raw Normal View History

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