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