NAME
Win32::Readch - Read individual characters from the keyboard using Win32::Console
SYNOPSIS
use Win32::Readch qw(readch_block getstr_noecho);
local $| = 1;
print 'Press a single keystroke: ';
my $ch1 = readch_block;
print "Character '$ch1' has been pressed\n\n";
my $password = getstr_noecho('Please enter a password: ');
print "Your password is '$password'\n";
AUTHOR
Klaus Eichner <klaus03@gmail.com>
COPYRIGHT AND LICENSE
Copyright (C) 2012 by Klaus Eichner
All rights reserved. This program is free software; you can redistribute it and/or modify it under the terms of the artistic license 2.0, see http://www.opensource.org/licenses/artistic-license-2.0.php