in reply to Re^5: Perl 6 is going to get a lot faster in 2013
in thread Perl 6 is going to get a lot faster in 2013

Documentation is still a weak point though a number of things were significantly improved in 2012. Most notably the new doc.perl6.org project has established the right architecture for a Perl 6 equivalent of Perl 5's perldoc.

At least four big parts of the diagnostic feedback problem have been addressed in the last couple years:

  • Comment on Re^6: Perl 6 is going to get a lot faster in 2013

Replies are listed 'Best First'.
Re^7: Perl 6 is going to get a lot faster in 2013
by educated_foo (Vicar) on Feb 05, 2013 at 01:23 UTC
    Speaking of documentation, I was trying to figure out how to do some basic introspection stuff in the December release, and had no luck. Things like browsing through loaded modules/classes (keys %:: in Perl 5) and getting the current scope's variables (PadWalker), both useful for tab completion in the interpreter. Neither the regular nor the debugging interpreter seems to provide this information, and it looked like I might have to dig down into NQP or (shudder) Parrot to find it.

    Is there a Perl 6-level way to get at this that I missed?

        Thanks -- that's what I was looking for.