print(table) example + add to API ___metamethods

I had been a bit confused everytime I would go to print a table and get a hex value and there is no place I could track down with what to do about that. Today I figured out what to do.

This is an important thing to have in Lua based IDE meant to be easily usable.
Tables are the core of Lua and printing to the console is the only way to start debugging and understanding things.

I strongly believe this should be added as a standard meta method for print(table):

function tablePrint(t)
    if t ~= nil then
        for k,v in pairs(t) do
            if type(v) == 'table' then
                tablePrint(v)
            else
                print(k..':'..v)
            end
        end
    end
end