Quick actions

cmd+k|ctrl+k

Navigation

Languages

Architecture

Snippet info

Language

Lua

Visibility

public

Author

legacy-v1-16166

Created

2023-09-26T22:13:30.73454Z

Updated

2024-06-16T01:34:13.146691Z

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) .. ")")
end
INFO