Treating each argument as a list, concatenate all arguments and return the resulting list.
The syntax is
[concat $list1 $list2]
Example:
set list1 {a b c}
set list2 {1 2 3}
puts [concat $list1 $list2]
Result:
a b c 1 2 3
Last Updated on 2022-01-06 by gantovnik
Recent Comments