Help for this page

Select Code to Download


  1. or download this
    my $private_method = sub {
        my ($self) = @_;
    ...
    };
    
    $self->$private_method();
    
  2. or download this
    {
        my $very_private_method = sub {
    ...
    
    # But this is a compile error under "use strict 'vars'"
    $self->$very_private_method();