Help for this page

Select Code to Download


  1. or download this
    my $value = $hashdata{$key};
    my @array = @$value;       # The whole array.
    my $first = $value->[0];   # The first element.
    my $last  = $value->[-1];  # The last element.