On 10-08-03 06:43 AM, Rob Coops wrote:
Third you could of course when you are printing the values from the array
add the linefeeds:
  print join("\n", @myarray);
or
  foreach my $value ( @myarray ) {
   print $value . "\n";

When printing, use a list; it's faster.

    print $value, "\n";


--
Just my 0.00000002 million dollars worth,
  Shawn

Programming is as much about organization and communication
as it is about coding.

The secret to great software:  Fail early & often.

Eliminate software piracy:  use only FLOSS.

--
To unsubscribe, e-mail: beginners-unsubscr...@perl.org
For additional commands, e-mail: beginners-h...@perl.org
http://learn.perl.org/


Reply via email to