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

  1. #
  2. # Example 1-5
  3. # Nested commands.
  4. #
  5.  
  6. set x 7
  7. set len [expr [string length foobar] + $x]
  8. #=> 13
  9.  
  10.  
  11.