- or download this
# from Extending and Embedding Perl, section 4.5
$HE = {
...
}
VAL => $SV,
};
- or download this
$elem->delete;
$elem->exists;
$$elem = $x;
print $elem; # overloaded for convenience
print $$elem;
- or download this
use strict;
use warnings;
...
1;
__END__