RosettaCodeData/Task/Keyboard-input-Flush-the-keyboard-buffer/Tcl/keyboard-input-flush-the-keyboard-buffer.tcl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

7 lines
182 B
Tcl

# No waiting for input
fconfigure stdin -blocking 0
# Drain the data by not saving it anywhere
read stdin
# Flip back into blocking mode (if necessary)
fconfigure stdin -blocking 1