- or download this
package H;
sub DESTROY { print "DESTROY\n"; }
...
print "\$h out of scope\n";
}
print "why now?\n";
- or download this
IN
DESTROY
$h out of scope
why now?
- or download this
package H;
sub DESTROY { print "DESTROY\n"; }
...
print "\$h out of scope\n";
}
print "why now?\n";