Does for Perl6/Rakudo already exist something like perl5's "perldoc -f function_name" for build-in-functions which gives me a short and quick usage instruction?

link|improve this question

feedback

1 Answer

up vote 4 down vote accepted

Hmm... This may not be exactly what you want, but:

Perl6::Doc - all useful Perl 6 Docs in your command line

This includes p6doc command line utility, which can be used to read Synopses thusly:

p6doc s05    # Browse Synopsis 05

The full list of synopsis is available here: http://perlcabal.org/syn/ ; Perl 6's built-in functions is s29: http://perlcabal.org/syn/S29.html

I never saw an individual per-function documentation like perldoc -f fname, though.


Also, on a related note there's a Periodic Table of Perl 6 operators

link|improve this answer
I tried this, but I get only an error-message: "If 'p6doc' is not a typo you can use command-not-found to lookup the package that contains it, like this: cnf p6doc". There is not much in my Doc.pm. – sid_com Dec 22 '10 at 19:08
@sid - they may have removed the program from the latest (0.47) distribution - it was there in 0.36 one. – DVK Dec 22 '10 at 22:20
The Synopses don't look as bad as I thought they would be. – sid_com Dec 23 '10 at 5:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.