Help for this page

Select Code to Download


  1. or download this
    # retrieve a list of keys
    my @keys = keys %{ $Prod{ref261} };
    
    # return the number of elements in the list
    my $count = scalar @keys;
    
  2. or download this
    my $count = scalar keys %{ $Prod{ref261} };
    
  3. or download this
    my $count = keys %{ $Prod{ref261} };