- or download this
package Plugin;
...
...
sub processes {
return qw/Foo/; # this module's process method likes objects which
+ isa Foo.
}
- or download this
sub process {
my $self = shift;
...
}
}
}
- or download this
package Plugin;
...
my $self = shift;
my $foo = shift;
}