RosettaCodeData/Task/Keyboard-input-Keypress-check/Icon/keyboard-input-keypress-check.icon
2023-07-01 13:44:08 -04: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