RosettaCodeData/Task/Keyboard-input-Keypress-check/PowerShell/keyboard-input-keypress-check.psh
2023-07-01 13:44:08 -04:00

3 lines
73 B
Text

if ($Host.UI.RawUI.KeyAvailable) {
$key = $Host.UI.RawUI.ReadKey()
}