Help for this page

Select Code to Download


  1. or download this
    my %fruit_map;
    @fruit_map{@apple_ids}  = ("apple")     x @apple_ids;
    ...
    while (my($k,$v) = each %hash) {
       print "$fruit_map{$k}-$fruit_map{$v}\n";
    }