http://www.perlmonks.org?node_id=116259


in reply to Maintainable code is the best code

FYI, another way to clean up...
my %hash1; #Hash for stuff my %hash2468; #hash for even nos my@blahblah; # Is this even necessary? my %someOtherKindOfHash; # Maybe stuff here my %h3; #you might want this hash, too.
After running through perltidy:
my %hash1; #Hash for stuff my %hash2468; #hash for even nos my @blahblah; # Is this even necessary? my %someOtherKindOfHash; # Maybe stuff here my %h3; #you might want this hash, too.
The result in this case is maybe not entirely ideal, but is at least a good deal better...