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

  1. #
  2. # Example 1-9
  3. # Continuing long lines with backslashes.
  4. #
  5.  
  6. set totalLength [expr [string length $one] + \
  7.         [string length $two]]
  8.  
  9.  
  10.