|
> However, long strings can have multiple copies inside Lua, so equal
> strings can have different addresses.
> string.format("%p %p", string.rep("x", 40), string.rep("x", 40))
0x55a34f26acc0 0x55a34f26acc0
> string.format("%p %p", string.rep("x", 41), string.rep("x", 41))
0x55a34f26b1b0 0x55a34f26b200
-- Roberto