in reply to Compactness
A couple of favorite compact idioms:
my %hash; # initialize all elements to 1 @hash{ @array } = (1) x @array; # assign empty string defaults $_ = "" for grep ! defined, ( $foo, $bar, $baz );
Compactness can be a good thing, but it's important to not golf. 10 lines of code is easier to maintain then 50, but it's going to depend on the skill of the maintainer (who should, but might not, recognize for ( 1..10 ){}) and the quality of the code in question. Ten lines of code is terrible if it doesn't do any sanity checking (if necessary).
Cheers,
Ovid
Join the Perlmonks Setiathome Group or just click on the the link and check out our stats.
|
---|