I\'m having some issues with Tcl. I have a variable that has a string in it. Butt now I want this string to be the name of a next variable.
I have found some similar que
I'm thinking you want upvar to create an "alias" variable name
$ tclsh % set name Test Test % upvar 0 cell $name % set cell 42 42 % puts $Test 42