Code format

This commit is contained in:
2025-05-15 20:37:50 +02:00
parent 9e6432d0b0
commit 69d1f9fd93
105 changed files with 24069 additions and 28084 deletions

View File

@@ -1,6 +1,6 @@
local function printTable(table, n)
if not n then n = 0 end
for k,v in pairs(table) do
for k, v in pairs(table) do
local printText = ""
for i = 1, n do
printText = printText .. " "
@@ -12,4 +12,4 @@ local function printTable(table, n)
printTable(v, n)
end
end
end
end