probably a silly question by I can't figure it out myself so here it goes. I'm trying to duplicate a variable so that when the original variable changes it's value, the copy changes as well. I've tried it this way but it's clearly not working:
x = 10
y = x
x = 20
y
10
how do I make y to equal 20 only by changing x?
tnx