Should you use append, lappend or even concat to add to
variable in Tcl? append puts one string directly on the end of
another, without adding any extra characters beyond those in the
incoming variables. lappend treats the target string as a
list, and will usually add an extra ...
阅读全文>>