- or download this
package MyPack;
use strict;
...
my $self = shift;
print "foo has been modified.\n";
}
- or download this
use MyPack;
use strict;
...
$obj->foo();
$obj->changeFoo();
$obj->foo();
- or download this
foo is unmodified.
foo has been modified.