Help for this page

Select Code to Download


  1. or download this
    package Abstract;
    use Carp;
    ...
    }
    
    1;
    
  2. or download this
    Class Fish inherits from Abstract, but does not define fly.
    Compilation aborted at fish.pl line 0
    
  3. or download this
    package Fish;
    use Abstract;
    ...
    }
    
    1;