Help for this page

Select Code to Download


  1. or download this
    sub setDestFile {
      my($self, $file) = @_;
    ...
      $fh = \*F;
      $self->{'destfile'} = $fh;
    }
    
  2. or download this
    sub output {
      my($self, $text) = @_;
    
      print $self->{'destfile'} "$text";
    }
    
  3. or download this
    sub output {
      my($self, $text) = @_;
    ...
    
      print $fh "$text";
    }