Help for this page

Select Code to Download


  1. or download this
    # private method add
    my $add = sub {
    ...
            my $amount = shift;
            $self->balance($self->balance+$amount);
    };
    
  2. or download this
    # private method padd
    sub padd {
    ...
            print caller(0) . " " . __PACKAGE__;
            $self->balance($self->balance+$amount);
    }