RosettaCodeData/Task/Keyboard-input-Flush-the-keyboard-buffer/Icon/keyboard-input-flush-the-keyboard-buffer.icon
2023-07-01 13:44:08 -04:00

3 lines
69 B
Text

procedure flushKB()
while kbhit() do getch() # flush input
end