Help for this page

Select Code to Download


  1. or download this
    *AUTOLOAD = \&BASE_CLASS::AUTOLOAD;  #this doesn't seem to work
  2. or download this
    BEGIN {
    eval <<"__CODE__";
    ...
    }
    __CODE__
    }
    
  3. or download this
    sub AUTOLOAD {
       ...            # Body of Autoload
    }