Help for this page

Select Code to Download


  1. or download this
    $mech->get('http://www.perlmonks.com/');
    print $mech->content;
    
  2. or download this
    my $http_response_object = $mech->get('http://www.perlmonks.com/');
    print $http_response_object->content;
    
  3. or download this
    $ perl -e 'use WWW::Mechanize; my $mech = WWW::Mechanize->new; my $hro
    + = $mech->get(q{http://www.perlmonks.com/}); print $hro->content' | l
    +ess