Help for this page

Select Code to Download


  1. or download this
    { my %_attr = {
           _attr1 => 'read',
           _attr2 => 'write',
    ...
    $_attr{$attr} =~ /$mode/;
    }
    }
    
  2. or download this
    sub AUTOLOAD {
    my ($self, $value) = @_;
    ...
    
    die "No such method: $AUTOLOAD, $!";
    }