wea.inspect: comment out debug

This commit is contained in:
Starbeamrainbowlabs 2021-08-05 15:58:14 +01:00
parent 9bcf242443
commit e9398862b9
No known key found for this signature in database
GPG Key ID: 1BE5172E637709C2

@ -22,16 +22,16 @@ local function inspect(item, maxdepth)
return table.concat(result,"") return table.concat(result,"")
end end
local test = { -- local test = {
a = { x = 5, y = 7, z = -6 }, -- a = { x = 5, y = 7, z = -6 },
http = { -- http = {
port = 80, -- port = 80,
protocol = "http" -- protocol = "http"
}, -- },
mode = "do_stuff", -- mode = "do_stuff",
apple = false, -- apple = false,
deepa = { deepb = { deepc = { yay = "Happy Birthday!" } }} -- deepa = { deepb = { deepc = { yay = "Happy Birthday!" } }}
} -- }
print(inspect(test, 10)) -- print(inspect(test))
return inspect return inspect