- or download this
package Some::Module;
...
my $self = shift;
return do_something('example');
}
- or download this
my $instance = Some::Module->new;
$instance->do_something('testing');
- or download this
sub do_more {
my $self = shift;
return do_something('', 'example');
}