One note: There is, sometimes, a need to comment subroutines using '#' and not in POD. For instance, if you want to write notes to yourself or other coders (as opposed to users) about extremely specific TO DO items or whatnot, '#' comments can be more appropriate.
Very true. My personal guideline is this:
- Interface - POD
- Implemenatation - Perl comment
/J