join() in print()

Question

In a recent article by Dan Sugalski there's this code:

print join("", @lines);

Is that print line a matter of style, or is it a better choice over the much simpler

print @lines;

Xavier Noria's original post

Next