Skip to content

Instantly share code, notes, and snippets.

@JesterXL
Created April 5, 2012 17:30
Show Gist options
  • Save JesterXL/2312710 to your computer and use it in GitHub Desktop.
Save JesterXL/2312710 to your computer and use it in GitHub Desktop.
Reflect/iterate over tables in Lua for debug purposes
--[[
Iterates over tables in Lua to help you identify what they are.
Examples:
showProps(self)
showProps(_G)
]]--
function showProps(o)
print("-- showProps --")
print("o: ", o)
for key,value in pairs(o) do
print("key: ", key, ", value: ", value);
end
print("-- end showProps --")
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment