in reply to array help
In fact, I'm only guessing now that you might want something like this:
or maybe you'd be more comfortable with something less compact:@another_array = map { $_ * $number_from_stdin } @large_array;
which does the same thing, but may be less mystifying to a larger audience of programmers who may be unfamiliar with Perl.foreach my $val ( @large_array ) { push @another_array, $val * $number_from_stdin; }
So, have you been reading any relevant books or documentation? You might find that helpful as well...
|
|---|