Posted to tcl by colin at Tue Apr 21 01:10:09 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]}