Stories
Slash Boxes
Comments
NOTE: use Perl; is on undef hiatus. You can read content, but you can't post it. More info will be forthcoming forthcomingly.

All the Perl that's Practical to Extract and Report

The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
 Full
 Abbreviated
 Hidden
More | Login | Reply
Loading... please wait.
  • I have from time to time used Package::Generator to facilitate similar or related forms of evil. It helps hide the scary ick behind a reasonable looking method call.
    --
    rjbs
  • That looks like %{"foo::"}. Yes, that’s similar to a computed hash name (and also requires no strict 'refs') but the name ends in a double colon.

    Actually, you can write just %foo:: if you’re not using computed stash names. That will work just fine under strictures.