in reply to Tricking Our Egos
This doesn't find all bugs in all code, but it appears to help---many subtle bugs can pop up in Perl because of incorrectly checked user input.
Personally, I prefer to cut and paste the code somewhere else, (or check it in to a branch with CVS or RCS) and rewrite what I think is incorrect. This helps me find stuff like testing for equality with `=' or `eq' where I should have used `=='.
|
---|