Posted to tcl by colin at Tue Apr 21 00:59:38 GMT 2009view pretty

% set x {a   b c $d {{e }} [f]}
a   b c $d {{e }} [f]
% puts [list {*}$x]
a b c {$d} {{e }} {[f]}
% puts [list $x]
{a   b c $d {{e }} [f]}