home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Practical Programming in Tcl & Tk (4th Edition)
/
TCLBOOK4.BIN
/
pc
/
exsource
/
9_7.tcl
< prev
next >
Wrap
Text File
|
2003-04-16
|
156b
|
11 lines
#
# Example 9-7
# Prompting for input.
#
puts -nonewline "Enter value: "
flush stdout ;# Necessary to get partial line output
set answer [gets stdin]