home *** CD-ROM | disk | FTP | other *** search
/ Practical Programming in Tcl & Tk (4th Edition) / TCLBOOK4.BIN / mac / exsource.old / 6_3.tcl < prev    next >
Text File  |  2003-04-15  |  181b  |  13 lines

  1. #
  2. # Example 6-3
  3. # Using switch for an exact match.
  4. #
  5.  
  6. switch -exact -- $value {
  7.     foo { doFoo; incr count(foo) }
  8.     bar { doBar; return $count(foo)}
  9.     default { incr count(other) }
  10. }
  11.  
  12.  
  13.