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.
Some issues (Score:2, Informative)
* The modules have no abstract (In NAME, one usually puts "Module::Name - Module that does something)
* Prototypes are used for methods. That's useless, since they're ignored for runtime thingies. Besides that, have a look at Far More Than Everything You've Ever Wanted to Know about Prototypes in Perl.
* POD is =cut and then immediately continued...
* Some POD is broken otherwise (if you use multiple angle brackets, you must also use whitespace!)
And probably more...
Re:Some issues (Score:2)
I will correct these issues ASAP.
I know that the prototypes aren't any good during run-time, but I use them when developing. They work quite well when refactoring code, that is why I tend to keep them around.
Again - thanks for you feedback...
Reply to This
Parent
Re:Some issues (Score:3, Informative)
In short, prototypes are evil. Don't use them unless you have no other choice (see: Error.pm [cpan.org]).
-Dom
Re:Some issues (Score:2)