Help for this page

Select Code to Download


  1. or download this
          sub STORE    {
            warn "Storing data with key $_[1] at $_[0].\n";
            $_[0]{$_[1]} = $_[2]
          }
    
  2. or download this
    package Tie::StdHash;
    
    ...
    
    sub TIEHASH  { bless {}, $_[0] }
    sub STORE    { $_[0]->{$_[1]} = $_[2] }