in reply to Re^2: making a list
in thread making a list and saving results
print $fh "@{[ map { 'something' . $_ } @list ]}\n";
Added: Or else you could decorate them beforehand: my @list = map { 'something' . $_ } $number1 .. $number2;
After Compline,
Zaxo
|
|---|