Help for this page

Select Code to Download


  1. or download this
      my $result=function_one
      sub function_one{
            #blah, blah
      }
    
  2. or download this
    eval q(
    use LWP::UserAgent qw(whatever);
    my $ua=LWP::UserAgent::new;
    );
    
  3. or download this
    require LWP::UserAgent;
    import LWP::UserAgent(qw(whatever));
    no strict subs;
    my $ua=LWP::UserAgent::New;
    
  4. or download this
    require LWP::UserAgent;
    import LWP::UserAgent(qw(whatever));
    my $ua=LWP::UserAgent::new();
    #continue doing what you do with LWP...