home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / pc / exsource.old / 5_1.tcl < prev    next >
Text File  |  2003-04-15  |  209b  |  16 lines

  1. #
  2. # Example 5-1
  3. # Constructing a list with the list command.
  4. #
  5.  
  6. set x {1 2}
  7. #=> 1 2
  8. set y \$foo
  9. #=> $foo
  10. set l1 [list $x "a b" $y]
  11. #=> {1 2} {a b} {$foo}
  12. set l2 [list $l1 $x]
  13. #=> {{1 2} {a b} {$foo}}} {1 2}
  14.  
  15.  
  16.