Help for this page

Select Code to Download


  1. or download this
    use strict;
    require DoStuff;
    ...
    #$pop = <STDIN>;
    $dogs->pop(5);
    print $dogs->pop;
    
  2. or download this
    package DoStuff;
    use strict;
    ##########################
    ...
        my $self->pop = shift;
    return $self->pop;
    }