79642955

Date: 2025-05-28 20:27:59
Score: 1
Natty:
Report link
# using  join

set a {abcd}
set b {efgh}
set l [list $a $b] # a list
set c [join  $l ]  # space sep (default)
set d [join  $l  {}]  # no sep

puts $c

abcd efgh

puts $d

abcdefgh

Reasons:
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Chris Reid