Help for this page

Select Code to Download


  1. or download this
    @another_array = map { $_ * $number_from_stdin } @large_array;
    
  2. or download this
    foreach my $val ( @large_array ) {
       push @another_array, $val * $number_from_stdin;
    }