- or download this
my $result=function_one
sub function_one{
#blah, blah
}
- or download this
eval q(
use LWP::UserAgent qw(whatever);
my $ua=LWP::UserAgent::new;
);
- or download this
require LWP::UserAgent;
import LWP::UserAgent(qw(whatever));
no strict subs;
my $ua=LWP::UserAgent::New;
- or download this
require LWP::UserAgent;
import LWP::UserAgent(qw(whatever));
my $ua=LWP::UserAgent::new();
#continue doing what you do with LWP...