Help for this page

Select Code to Download


  1. or download this
    sub AUTOLOAD {
      ...
      *{$AUTOLOAD} = sub { ... }; 
      goto &$AUTOLOAD;
    }
    
  2. or download this
    sub AUTOLOAD {
      my($attr) = $AUTOLOAD =~ /^.*::(.+)$/;
      return $_->{$attr}; 
    }