mdupont has asked for the wisdom of the Perl Monks concerning the following question:
print OUT join "\t",@{$columns} "\n"; because the join prefers a scalar over an array?
print OUT join ("\t",@{$columns}). "\n";
Title edit by tye after moving out of Obfuscation (was: Not really obfuscation, but.....)
|
---|
Replies are listed 'Best First'. | |
---|---|
(jeffa) Re: Not really obfuscation, but.....
by jeffa (Bishop) on Nov 14, 2001 at 20:43 UTC | |
by blakem (Monsignor) on Nov 14, 2001 at 23:40 UTC | |
by tye (Sage) on Nov 15, 2001 at 02:12 UTC |