In this question, it is shown how to get the memory address of a mutable address
julia> a = [1, 2, 3]
3-element Array{Int64,1}:
1
2
3
julia> s=repr(UInt64(pointer_from_objref(a)))
"0x000000001214ce80"
How to get the memory address of an immutable object?