Very short question.
When you print out a table, it returns a memory address:
local t = {"a"}
print(t)
--table: 0x406aba5ebf3c5f20
Is there a way to get the table’s contents back using the memory address?
If you know, then go ahead and comment it down below. Thank you.