luau-src 0.3.0

Luau source code bindings
Documentation
1
2
3
4
5
6
7
local function test(t)
	for k,v in pairs(t) do
		print(k,v)
	end
end

test({a = 1})