Help for this page

Select Code to Download


  1. or download this
    use Tie::Autotie 'Tie::IxHash';
    tie %hash_ref, 'Tie::IxHash';  # yuck, that variable's name!
    $hash_ref{MAIN}{ZOP}{Dev} = undef;
    $hash_ref{MAIN}{ZOP}{Con} = undef;
    ... # etc
    
  2. or download this
    sub ixhash {
         tie my(%hash), 'Tie::IxHash';
         %hash = @_;
         return \%hash;
    }
    
  3. or download this
    use Tie::IxHash;
    tie %hash_ref, 'Tie::IxHash';
    ...
                            'Exit' => undef,                             
                        )
                 );