Help for this page

Select Code to Download


  1. or download this
    my $variable = "Hello";
    print $variable;
    
  2. or download this
    my $ua = new LWP::UserAgent;
    my $response = $ua->get('http://SOMEURL');
    my $decodedContent = $response->decoded_content(charset=>'none');
    print $decodedContent;
    
  3. or download this
    my $ua = new LWP::UserAgent;
    my $response = $ua->get('http://SOMEURL');
    my $decodedContent = $response->decoded_content(charset=>'none');
    print "HELLO-$decodedContent-HELLO";