RosettaCodeData/Task/Keyboard-input-Keypress-check/Ruby/keyboard-input-keypress-che...

8 lines
104 B
Ruby

begin
check = STDIN.read_nonblock(1)
rescue IO::WaitReadable
check = false
end
puts check if check