Help for this page

Select Code to Download


  1. or download this
    #!/usr/local/bin/perl -w
    use strict;
    use LWP::Simple;
    my ($content) = get('http://www.newbie.org/index.html');
    print $content;
    
  2. or download this
    #!/usr/local/bin/perl -w
    use strict;
    require LWP::Simple;
    my ($content) = get('http://www.newbie.org/index.html');
    print $content;
    
  3. or download this
    #!/usr/local/bin/perl -w
    use strict;
    require LWP::Simple;
    my ($content) = LWP::Simple::get('http://www.newbie.org/index.html');
    print $content;