RosettaCodeData/Task/Keyboard-input-Flush-the-keyboard-buffer/Icon/keyboard-input-flush-the-keyboard-buffer.icon

4 lines
69 B
Text
Raw Permalink Normal View History

2013-04-10 21:29:02 -07:00
procedure flushKB()
while kbhit() do getch() # flush input
end