Help for this page

Select Code to Download


  1. or download this
    #!/usr/bin/perl -w
    use strict;
    ...
    my $page = get('http://www.example.com/');
    
    print $page;
    
  2. or download this
    my @ary;
    foreach (1..100) {
         push @ary, get("http://www.example.com/$_.html") 
    }