On Tue, Jan 30, 2001 at 04:03:26PM -0500, Stephen P. Potter wrote:
> Lightning flashed, thunder crashed and titmas@postal.sps.mot.com whispered:
> | block comments are turned off when the commented field
> | contains
> | #!/usr/local/bin/perl
> |
> | Here is an example:
> |
> | #!/usr/local/bin/perl
> | use strict;
> | print ("Hello World\n");
> | =block comment
> | #!/usr/local/bin/perl
> | $junk = 0;
> | $j2 = 0;
> | =cut
>
> "=block" is not valid pod. Even so, it does look like you have uncovered a
> bug, because the =pod/=cut pair, which should work, does the same thing.
>
Correct me if I'm wrong, but the perl interpreter doesn't know or care what
is valid POD and what isn't. All it looks for is an equal sign followed by
an identifier.
Ronald