Amongst other things he recommends Perl::Tidy to clean up poorly styled code, or even to be run automatically at CVS check-in and check-out so you never have to see any other coding style other than your own. Cute idea...
Another good idea he suggested was a cure for "monolithic madness",
{
use strict;
[ ... ]
{
no strict;
[ ... ]
}
}
gradually migrating code from inside to outside.
No comments:
Post a Comment