RosettaCodeData/Task/Keyboard-input-Keypress-check/Tcl/keyboard-input-keypress-check-1.tcl
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

9 lines
160 B
Tcl

fconfigure stdin -blocking 0
set ch [read stdin 1]
fconfigure stdin -blocking 1
if {$ch eq ""} {
# Nothing was read
} else {
# Got the character $ch
}