The often deranged postings of yet another hacker, pretending to be an Astronomer, pretending to be a hacker who has written a book or two for O'Reilly Media.
Tuesday, July 27, 2004
Globs
Okay, so I finally understand how Exporter works. I really should have known this one,
package Module;
sub import {
my $caller = caller();
*{$caller . '::subroutine'} = \&subroutine;
}