Keyboard input/Flush the keyboard buffer

From Rosetta Code
Revision as of 11:00, 9 October 2010 by rosettacode>Dkf (→‎{{header|ZX Spectrum BASIC}}: corrected language name)
Keyboard input/Flush the keyboard buffer is a draft programming task. It is not yet considered ready to be promoted as a complete task, for reasons that should be found in its talk page.

Flush the keyboard buffer.

BASIC

ZX Spectrum Basic

<lang basic>10 IF INKEY$ <> "" THEN GOTO 10</lang>

PureBasic

<lang PureBasic>While Inkey()<>"": Wend </lang>