Architecture
local tableAddress = tonumber(string.sub(tostring{}, 8))
if #tostring(tableAddress) <= 12 then
print("32 bit architecture (0x" .. tostring(tableAddress) .. ")")
else
print("64 bit architecture (0x" .. tostring(tableAddress) .. ")")
endINFO