in reply to Re: Re: creating 2 file writing objects
in thread creating 2 file writing objects
and used in other methods like thisuse FileHandle; my $FH = FileHandle->new(">>$self->{output_file}"); $self->{file_handle} = \$FH;
Thanks again for all the pointers.my $FH = ${$self->{file_handle}}; print $FH "some text\n" ;
|
|---|