RosettaCodeData/Task/Keyboard-input-Flush-the-keyboard-buffer/FreeBASIC/keyboard-input-flush-the-keyboard-buffer.freebasic

7 lines
150 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
' FB 1.05.0 Win64
' Get characters from the keyboard buffer until there are none left
While Inkey <> "" : Wend
Print "Keyboard buffer flushed"
Sleep