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

  1. % set x {a b c $d {{e }} [f]}
  2. a b c $d {{e }} [f]
  3. % puts [list {*}$x]
  4. a b c {$d} {{e }} {[f]}
  5. % puts [list $x]
  6. {a b c $d {{e }} [f]}