luau/fuzz/basic.luau
ramdoys c1e2f650db
chore: update applicable .lua files to .luau (#1560)
Updates all of the APPLICABLE .lua files to the .luau file ending.

---------

Co-authored-by: ramdoys <ramdoysdirect@gmail.com>
2025-02-21 14:29:20 -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})