Help for this page

Select Code to Download


  1. or download this
    BEGIN {
        no strict 'refs';
    ...
            }
        }
    }
    
  2. or download this
    BEGIN {
        no strict 'refs';
    ...
            *$property = sub : lvalue { $_[0]->{$property} };
        }
    }
    
  3. or download this
    OLD SITUATION           NEW SITUATION
    
    ...
      $temp =~ s/foo/bar/;
      $foo->bar($temp);
    }                       $foo->bar =~ s/foo/bar/