in reply to FileHandle Select Problem?
and not seeing anything since it's actually doing:print @cons_block;
Remember that print defaults to STDOUT because it is the default selected filehandle. To get around this, be specific:print FILEHANDLE @cons_block;
If it's not the case, perhaps you can share more of the code you use to test the data in @cons_block.print STDOUT @cons_block;
- danboo
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: FileHandle Select Problem?
by keithbas (Initiate) on Apr 16, 2002 at 17:56 UTC |