RosettaCodeData/Task/Keyboard-input-Flush-the-keyboard-buffer/PowerShell/keyboard-input-flush-the-keyboard-buffer-1.ps1

4 lines
80 B
PowerShell
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
while ($Host.UI.RawUI.KeyAvailable) {
$Host.UI.RawUI.ReadKey() | Out-Null
}