Help for this page

Select Code to Download


  1. or download this
    package X;
    
    ...
    use base 'X';
    
    1;
    
  2. or download this
    $ perl -cw X.pm
    Subroutine x redefined at /data/web/lib/X.pm line 3.
    X.pm syntax OK
    
  3. or download this
    package X;
    $VERSION = 0.01;
    ...
    use base 'X';
    
    1;