chroma_solstice/debug_helpers.lua

5 lines
77 B
Lua
Raw Normal View History

2015-03-12 03:04:09 -04:00
function shallowTablePrint(t)
for i, v in pairs(t) do
print(i, v)
end
end