Help for this page

Select Code to Download


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