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

  1. #
  2. # Example 5-5
  3. # Double quotes compared to the concat and list commands.
  4. #
  5.  
  6. set x {1 2}
  7. #=> 1 2
  8. set y "$x 3"
  9. #=> 1 2 3
  10. set y [concat $x 3]
  11. #=> 1 2 3
  12. set s { 2 }
  13. #=> 2
  14. set y "1 $s 3"
  15. #=> 123
  16. set y [concat 1 $s 3]
  17. #=> 1 2 3
  18. set z [list $x $s 3]
  19. #=> {1 2} { 2 } 3
  20.  
  21.  
  22.