in reply to my $x or my ($x)
In my experience, code full of lines like:
Is usually evidence of a copy/paste programmer at work. No shame in that when you're a self taught beginner, but you don't want to be seeing it in code written by an "experienced" Perl programmer.my ($x); my ($y); my ($i) = 1;
|
---|