- or download this
use strict;
use warnings;
...
++$element;
}
}
- or download this
Before: 1 2 3 4 5 6 7 8
After: 2 3 4 5 6 7 8 9
- or download this
use strict;
use warnings;
...
sub clobberDefVar {
$_ = 0;
}
- or download this
Before: 1 2 3 4 5 6 7 8
After: 0 0 0 0 0 0 0 0