- 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;
- or download this
my $count = scalar keys %{ $Prod{ref261} };
- or download this
my $count = keys %{ $Prod{ref261} };