I was curious if it's possible to have a module like so:
package Foo:Monkey;
use strict; use warnings;
You can call "strict->import" like this:
package Foo::Monkey;
sub import {
for my $pragma (qw(strict warnings)) {
require "$pragma.pm";
$pragma->import;
}
}-- Steve
-- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] <http://learn.perl.org/> <http://learn.perl.org/first-response>
