Help for this page

Select Code to Download


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