RosettaCodeData/Task/Keyboard-input-Flush-the-keyboard-buffer/M2000-Interpreter/keyboard-input-flush-the-keyboard-buffer-1.m2000
2023-07-01 13:44:08 -04:00

16 lines
403 B
Text

Module Checkit {
\\ feed keyboard
Keyboard "abcd"
\\ Work in Windows not in Linux (no Osk.exe exist)
\\ no error return in linux
Keyboard ! 'open virtual keyboard
Wait 3000
\\ flush keyboard
\\ we can use Do or Repeat (is the same)
Repeat {
a$=inkey$
if a$="" then Print :exit
Print a$;
} Always
}
Checkit