This repository has been archived on 2025-10-15. You can view files and clone it, but you cannot make any changes to its state, such as pushing and creating new issues, pull requests or comments.
luau/fuzz/basic.lua
Arseny Kapoulkine d01addc625 Sync to upstream/release/501 (#20)
Co-authored-by: Rodactor <rodactor@roblox.com>
2021-11-01 14:52:34 -07:00

7 lines
84 B
Lua

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