Hi,

I noticed that most beginner texts will introduce and use print like this:

print $moose, $squirrel, $boris, "\n";

However, when I review code from CPAN, I often (typically) see:

print $bullwinkle . $rocky . $natasha . "\n";

As I recall, print is a list operator (and therefore the comma syntax is
used to separate items in a list), but is catenation somehow faster/more
memory efficient?

Thanks,

--Marc

Reply via email to