Help for this page

Select Code to Download


  1. or download this
    sub new {
        my $class = shift;
    ...
        
        return bless \%attrs, $class;
    }
    
  2. or download this
    sub add_product {
        my ($self, $product_data) = @_;
    ...
        push $self->{'trolley'}, $new_product;
        push @{$self->{'trolley'}}, $new_product;
    }