Perl input problem

supmagc wrote on Sat Mar  4 13:42:04 CET 2006:
I'm using eclipse 3.2, and the latest EPIC-version, ...
but whenever I write something in my script try to get some user input in
my script, it sets thath input (when running) in front and all the output
after that

a little example:
script=
print "test A\n";
$test = <>;
print "test B\n";
print"$test";
result:
(asking input)
test A
test B
(displaying my input)

any Idea how to resolve this, any help would be greatly appreciated
jploski wrote on Sat Mar  4 14:37:01 CET 2006:
Put $| = 1; at the beginning of the script.

Note: The above is an archived snapshot of a forum thread. Use the original thread at sf.net to post comments.