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

  1. #
  2. # Example 6-12
  3. # Multiple value lists with foreach.
  4. #
  5.  
  6. foreach {k1 k2} {orange blue red green black} value {55 72 24} {
  7.     puts "$k1 $k2: $value"
  8. }
  9. orange blue: 55
  10. red green: 72
  11. black : 24
  12.  
  13.  
  14.