say :to(END); =begin POD blah blah blah =end POD ENDIf I understand matters correctly, the "POD code" in the above example isn't POD code at all, but rather the content of a multi-line quote.
No. It's Pod. *Any* line that begins with '=begin' always starts a Pod block. Always. To get the multi-line quote, you'd need: say :to(END); =begin POD blah blah blah =end POD END Damian