Help for this page

Select Code to Download


  1. or download this
     $hash{'a', 'b'}
    
  2. or download this
    use strict;
    use Tie::Hash;
    ...
    $hash{'csUsers','csGroups'} = 'foo';
    print $hash{'csGroups','csUsers'};   ## prints 'foo'
    print Dumper(\%hash);