in reply to Term::ReadKey problem!
If you just want a lowlevel line-reading routine, you're probably better off with something like:
print "> "; while (<STDIN>) { chomp; print "WORD: $_\n> "; }
Have you tried re-insterting the $|=1 line?
updated: fixed some grammar and spelling mistakes
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Term::ReadKey problem!
by Ace128 (Hermit) on Jun 15, 2006 at 16:15 UTC |