Help for this page

Select Code to Download


  1. or download this
    package Automobile;
    sub CarType {die "Ought to be overridden!"}
    ...
    __END__
    package ParkingLot;
    $x = $automobile->CarType;
    
  2. or download this
    package Automobile;
    sub covers_slots {die "Ought to be overridden!"}
    ...
    __END__
    package ParkingLot;
    $slots = $automobile->covers_slots;