I am trying to accomplish something very simple in TCL. Namely string concatenation where some (not all) of the strings are assigned to variables. For example
set string1 fragilistic
set string2 docious
puts [concat supercali $string1 expiali $string 2]
this results in supercali fragilistic expiali docious. I really dont want those spaces in between so what I tried to do was
puts [concat supercali$string1expiali$string 2]
But this will return an error. How can I concatenate strings with strings assigned to variables in TCL without those intermediate spaces?