my %month_hash = ( '1' => 'January', '2' => 'February', '3' => 'March', '4' => 'April' ); #### my @order = (1 .. 4); #### my @months = @month_hash{@order}; print $_,$/ for @months; #### delete $month_hash{3}; my @months = @month_hash{@order}; print $_,$/ for @months;
## my @order = (1 .. 4); ##
## my @months = @month_hash{@order}; print $_,$/ for @months; ##
## delete $month_hash{3}; my @months = @month_hash{@order}; print $_,$/ for @months;