in reply to Re^2: Array results
in thread Array results

print FINAL join("\n", @row), "\n";

print FINAL join( "\n", @row, "" ); # does the same, looks smart ;)

Cheerio, Sören

Replies are listed 'Best First'.
Re^4: Array results
by chb (Deacon) on Oct 29, 2004 at 10:14 UTC
    Away with resource wasting and useless interpolation :-)

     print FINAL join( "\n", @row, '' );