in reply to Re^4: What's your programming style?
in thread What's your programming style?

I personally will always only put POD in the __END__ of packages and scripts
Yes. In a module, I use POD (after __END__) for the user of the module and write comments (with the code) for the maintainer of the module. That is, I like to keep user and maintainer documentation separate.

See also: