function printTableItem(k, v, level)
for i = , level do
io.write(" ")
end
io.write(tostring(k), " = ", tostring(v), "\n")
if type(v) == "table" then
if not tablePrinted[v] then
tablePrinted[v] = true
for k, v in pairs(v) do
printTableItem(k, v, level + )
end
end
end
end
printTableItem("_G", _G, )
相关文章
- 10-15在浏览器中通过bartender,调用条码打印机的active控件代码的实现
- 10-15Qt源码包中的一段代码
- 10-15一段比较有意思的代码——介绍system verilog中的新增幅值语句
- 10-15用jquery可以用使用serialize()序列化表单值,那有没有什么方法可以将值填充到表单中呢? (一段不错的代码)
- 10-15在C++工程中main函数之前跑代码的廉价方法(使用全局变量和全局函数)
- 10-15打印lua中全局变量的一段代码
- 10-15如何在我的代码中打印中文单词..使用python
- 10-15通过一段代码说明C#中rel与out的使用区别
- 10-15一段代码了解Java中char和int的转换
- 10-15JNI的native代码中打印日志到eclipse的logcat中