Help for this page

Select Code to Download


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