Assume we have a variable \'a\' set to 12345 :
set a 12345
Now how do i set a new variable \'b\' which contains the value of \'a\' and anot
Other option is to use concat command like below.
set b [concat $a\9876]