bowei_99 has asked for the wisdom of the Perl Monks concerning the following question:
1 3 10 20
it should print 1, then replace that with a 3, then replace that with a 10, then with 20, as it parses the file and determines the value.
I had thought that using
would work, but it seems to be for something else. What is the suggested way of doing this?use IO::Handle; *STDOUT->autoflush();
-- Burvil
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: How to dynamically update value in STDOUT?
by Sidhekin (Priest) on Nov 05, 2007 at 01:44 UTC | |
by bowei_99 (Friar) on Nov 05, 2007 at 03:00 UTC |