Help for this page

Select Code to Download


  1. or download this
    use FileHandle;
    my $FH = FileHandle->new(">>$self->{output_file}");
    $self->{file_handle} = \$FH;
    
  2. or download this
    my $FH = ${$self->{file_handle}};    
    print $FH "some text\n" ;