I 'm trying to install LWP::simple from cpan,
which i did by installing CPAN first then i typed
install LWP:simple
which installed it for me. So i tried to run this code:
#! /usr/bin/perl -w
use strict;
use LWP::simple;
my $content=get(' die "Couldn't get it!" unless defined $content;
which out puts this error:
#! /usr/bin/perl -w
use strict;
use LWP::simple;
my $content=get(' die "Couldn't get it!" unless defined $content;
why is this?
which i did by installing CPAN first then i typed
install LWP:simple
which installed it for me. So i tried to run this code:
#! /usr/bin/perl -w
use strict;
use LWP::simple;
my $content=get(' die "Couldn't get it!" unless defined $content;
which out puts this error:
#! /usr/bin/perl -w
use strict;
use LWP::simple;
my $content=get(' die "Couldn't get it!" unless defined $content;
why is this?