- or download this
package Foo;
...
my $self = shift;
return $self->_get_foo();
}
- or download this
# 'private' has to change
sub _get_foo {
...
my $self = shift;
return $self->_get_foo();
}
- or download this
sub get_foo {
my $self = shift;
...
my $self = shift;
return $self->_get_bar();
}