Help for this page

Select Code to Download


  1. or download this
    package AutoLoader;
    
    ...
    
    AUTOLOAD {
        my $sub = $AUTOLOAD;
    
  2. or download this
        local $!; # Do not munge the value.
        eval { local $SIG{__DIE__}; require $filename };