This commit is contained in:
2025-09-30 12:20:47 -04:00
parent 1a92ff1bd2
commit 91bf28a728
65 changed files with 2587 additions and 240 deletions
+13
View File
@@ -0,0 +1,13 @@
local function func(tble,space)
space=space or ""
for i,v in pairs(tble) do
print(space..tostring(i).." | "..tostring(v))
if type(v) == "table" then
if i=="_G" then else
func(v,space.." ")
end
end
end
end
func(_G)