NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.
All the Perl that's Practical to Extract and Report
Stories, comments, journals, and other submissions on use Perl; are Copyright 1998-2006, their respective owners.
Code rot (Score:2)
Existing code will not become incorrect
Well... It depends on what you mean.
Some warnings, for example with an unclean conversion of a string to a number, or
use of uninitialized value, depends on your data, and when you're parsing data, the structure of that data may change over time, because after a year, people that entered the data may have changed some conventions. That way, you may suddenly start to get warnings where you never got them before. And more often than not, that is a reliable indication that things have gone wrong.Re: (Score:1)
That's not existing code becoming incorrect, that's new data being incorrect.