Is there a way in to make copy of a variable so that when the value changes of variable \'a\' it copies itself to variable \'b\'?
Example
a=\'hello\'
There is an ugly way to create an independent copy of a simple variable via a temporary list:
a = 6; b = [a][0]