On 03/01/2017 03:50 PM, Will Coleda wrote:
Not true, '=for' is part of POD6. See below.
If you're getting errors, it's helpful to reduce the example to a
reasonably small bit of code that duplicates the same error; either
you'll realize the issue as you remove unrelated bits of code, or
you'll end up with an example that epitomizes the problem you're
facing.
$ cat foo.p6
=for comment
This is a comment
say "hi";
$ perl6 foo.p6
hi
Hi Will,
I've tried it out and found my mistake. I continued typing after the
first word like so
=for head1 abc def
instead of
=for head1
abc def
Many thanks,
Marcel