Please, ignore this thread!! I've posted the correct thread under the subject:
Redirecting STDOUT to an array.
Ron Smith <[EMAIL PROTECTED]> wrote: Hi all,
How would I redirect the output of the print line to an array instaed of STDOUT?
my $firstBar = 5;
print "*" while $firstBar, $firstBar--
Hi all,
How would I redirect the output of the print line to an array instaed of
STDOUT?
my $firstBar = 5;
print "*" while $firstBar, $firstBar--;
I've looked in several places, including the Camel Book and the Cookbook.
Everything seems to be refering to a filehandle instead.