in reply to Re: understanding my() and typeglobs (perl6)
in thread understanding my() and typeglobs

Typeglobs are definitely dead in perl 6, and won't be available at all to your programs. Parrot will still be able to do globby things so we can make perl 5 code work under parrot, but it'll definitely be a workaround sort of thing.

If you've (the generic you here, as I have no doubt tye knows how to make globs dance) never used them, this probably isn't a good time to start, as there's very rarely any good reason to do so in perl 5. If you knew when and where it was a good idea, you'd already be more than capable of doing it without asking how globs work. :)

  • Comment on Re: Re: understanding my() and typeglobs (perl6)

Replies are listed 'Best First'.
Re: Re: Re: understanding my() and typeglobs (perl6)
by Ctrl-z (Friar) on Mar 17, 2003 at 18:47 UTC
    a fair point. Perl6 losing globs makes sense, but will there still be the equivalent of the symbol table - that can be read and manipulated at runtime?


    time was, I could move my arms like a bird and...
      Yes, of course. Both the global symbol tables and the lexical pads up the call chain will be readable.