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

  1. #
  2. # Example 9-7
  3. # Prompting for input.
  4. #
  5.  
  6. puts -nonewline "Enter value: "
  7. flush stdout                ;# Necessary to get partial line output
  8. set answer [gets stdin]
  9.  
  10.  
  11.