Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

"perldoc -f" for Perl6/Rakudo

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?

like image 427
sid_com Avatar asked Dec 22 '10 15:12

sid_com


1 Answers

Here is the tool you are looking for:

  • p6doc tool contains -f option
  • Online version
  • perl6 --doc option

If you don't have it installed, install it with zef:

zef install p6doc

If you don't have zef installed, install it from zef's github repo.

like image 95
teodozjan Avatar answered Sep 30 '22 18:09

teodozjan