in reply to Re: Term::Readkey GetConsoleMode error
in thread Term::Readkey GetConsoleMode error
#!/usr/bin/perl use warnings; use strict; my $c; my $t = sysread STDIN,$c,1; print "You input $c with $t";
This still doesnt work... It gets an infinite amount of input and never exits. Am i doing this right?
|
|---|