RosettaCodeData/Task/Keyboard-input-Keypress-check/Icon/keyboard-input-keypress-check.icon

8 lines
314 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
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