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

  1. #
  2. # Example 1-10
  3. # Grouping with double quotes vs. braces.
  4. #
  5.  
  6. set s Hello
  7. #=> Hello
  8. puts stdout "The length of $s is [string length $s]."
  9. #=> The length of Hello is 5.
  10. puts stdout {The length of $s is [string length $s].}
  11. #=> The length of $s is [string length $s].
  12.  
  13.  
  14.