How to do it - Parameter passing
file: code/ParameterPassing/FindNewSeries.pm 8: sub run { 9: my ($self, $ua, $formatter, $tt) = @_; 10: my $html = $self->fetch($ua); 11: my $data = $self->find($formatter, $html); 12: $self->write($tt, $data); 13: }
and passes them on to the methods that actually do stuff