How do I determine whether 2 variables refer to the same instance in Go? More specifically, that a mutation to the value of one variable would effect the value of the other variable also.
To further refine the question: How would I determine when 2 variables would satisfy the "is" operator per CPython:
a is b