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

  1. #
  2. # Example 1-15
  3. # Using set to return a variable value.
  4. #
  5.  
  6. set var {the value of var}
  7. #=> the value of var
  8. set name var
  9. #=> var
  10. set name
  11. #=> var
  12. set $name
  13. #=> the value of var
  14.  
  15.  
  16.