Help for this page

Select Code to Download


  1. or download this
    use CGI();
    my $q = CGI->new;
    print $q->header, $q->header, $q->Dump;
    __END__
    
  2. or download this
    use Data::Dump qw/ dd /;
    use WWW::Mechanize;
    ...
    $ua->get( $server_endpoint );
    dd( $ua );
    __END__