Help for this page

Select Code to Download


  1. or download this
    my %array_references = (myarray => \@MyArray, second_array => \@anothe
    +r-array);
    
  2. or download this
    my $reference = $array_references{lc $input};
    print $reference->[0]; # (for example)