Help for this page

Select Code to Download


  1. or download this
    package Persist;
    
    ...
        # mark and item as changed so it should be saved
        $self->{_change}++;
    };
    
  2. or download this
    package VendingMachine;
    use base qw(Persist);
    ...
            $self->give_change($money - $item->cost);
        };
    };