Help for this page

Select Code to Download


  1. or download this
    package XYZ;
    use strict; use warnings;
    ...
     $self->{'ABC'} = 42;
     return $self
    }
    
  2. or download this
    for my $method (qw(get put whatever)) {
        *$method = sub { my $self = shift; $self->{furl}->$method( @_ ); }
    };