Help for this page

Select Code to Download


  1. or download this
    my $hashref = { .... };
    my $keysCount = keys $hashref;
    
  2. or download this
    my $keysCount = keys ${ $hashref };
    
  3. or download this
    my $keysCount = keys $$hashref;