1
vote
How to concisely concatenate strings in Tcl?
If you are doing this many times, in a loop, or separated by some intermediate code, you might also consider:
set result ""
append result [myFoo $arg]
append result [myBar $arg]
app …
