- or download this
use Time::HiRes 1.9;
- or download this
BEGIN {
require Time::HiRes;
Time::HiRes->VERSION(1.9)
Time::HiRes->import
}
- or download this
package MyAgent;
...
push @MyAgent::ISA, 'LWP::UserAgent';
}
- or download this
package MyAgent;
use parent 'LWP::UserAgent';
BEGIN {LWP::UserAgent->VERSION(6.39)}
- or download this
package Myagent;
use parent::versioned ['LWP::UserAgent' => 6.39];
- or download this
use parent::versioned ['LWP::UserAgent' => 6.39],
['Mojo::DOM' => 7.2 ],
'Foo::Base';
- or download this
use parent::versioned qw(Foo);