mirror of
https://github.com/luau-lang/luau.git
synced 2025-03-04 11:11:41 +00:00

Updates all of the APPLICABLE .lua files to the .luau file ending. --------- Co-authored-by: ramdoys <ramdoysdirect@gmail.com>
7 lines
84 B
Text
7 lines
84 B
Text
local function test(t)
|
|
for k,v in pairs(t) do
|
|
print(k,v)
|
|
end
|
|
end
|
|
|
|
test({a = 1})
|