wea.inspect: comment out debug

This commit is contained in:
Starbeamrainbowlabs 2021-08-05 15:58:14 +01:00
parent 9bcf242443
commit e9398862b9
Signed by: sbrl
GPG Key ID: 1BE5172E637709C2
1 changed files with 11 additions and 11 deletions

View File

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