Help for this page

Select Code to Download


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