Help for this page

Select Code to Download


  1. or download this
    tie( %hash, 'Class' );
    
  2. or download this
    tie( { anon => 'hash' }, 'Class' );
    
  3. or download this
    my $href = {};
    tie( %{$href}, 'Class' );
    
  4. or download this
    my( %hash ) = ( 'this' => {},
                 'that' => {} );
    tie( %{$hash{'this'}}, 'Class' );
    
  5. or download this
    my( %hash ) = tie( %otherhash, 'Class' );
    
  6. or download this
    my $obj = tie( %hash, 'Class' );
    $obj->DESTROY;