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

7 lines
314 B
Text

procedure main()
delay(1000) # give user a chance to input
if kbhit() then # test for input
write("You entered ",x := getch()) # read w/o echo
else # use getche for echo
write("No input waiting")
end