pod6 Questions
1
Solved
#!/usr/bin/env raku
use v6.d;
sub MAIN (
:$foo = 42, #= A test
) {
run $*EXECUTABLE, '--doc', $*PROGRAM;
}
=begin pod
=head1 Bar
blah, blah, blah
=head2 Baz
yadda, yadda, yadda
=end pod
O...
2
Solved
Looking at https://docs.raku.org/language/pod#Lists. I don't see a way to create a numbered list:
one
three
four
Is there an undocumented way to do it?
1
Solved
In all of my Raku packages, the README has a line at the top having Travis badge for the module, like this:
[![Build Status](https://travis-ci.org/Kaiepi/p6-Failable.svg?branch=master)](https://tr...
1
The documentation in Perl 6 programs, using the Pod 6 DSL, are actually parsed as part of the code; this makes that documentation available, inside the program, as the $=pod variable.
However, I'd...
Philis asked 5/12, 2018 at 14:12
2
The Perl 6 POD documentation has a section on accessing the current file's POD document by using $=pod. There is no information on accessing another file's POD document.
How can I access another f...
1
© 2022 - 2024 — McMap. All rights reserved.