in reply to Re: Re: Re: Perl Programming guidlines/rules
in thread Perl Programming guidelines/rules

unless, of course, you add your variables by

## start with: my $foo = shift; ## adding $bar yields: my $foo = shift; my $bar = shift;

it's a matter of style. if you're changing your style, it's safer to rewrite the code from scratch than to modify in place -- even (or especially) if it's only one statement.

~Particle *accelerates*