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