my $variable = "Hello"; print $variable; #### my $ua = new LWP::UserAgent; my $response = $ua->get('http://SOMEURL'); my $decodedContent = $response->decoded_content(charset=>'none'); print $decodedContent; #### my $ua = new LWP::UserAgent; my $response = $ua->get('http://SOMEURL'); my $decodedContent = $response->decoded_content(charset=>'none'); print "HELLO-$decodedContent-HELLO";