Help for this page

Select Code to Download


  1. or download this
    my $links = 'h:\perl scripts\links.txt';
    
  2. or download this
    my $LINKS = 'h:\perl scripts\links.txt';
    
  3. or download this
    sub LINKS { return 'h:\perl scripts\links.txt'; }
    
  4. or download this
    undef $/;
    
  5. or download this
    sub middle {
        my @output = @_;
        print while @output;
    }