Help for this page

Select Code to Download


  1. or download this
    for ( 4 .. 6 ){
        print "$_\n";
    ...
            print "\t$_\n";
        }
    }
    
  2. or download this
    my %stopwords = map { $_ => } <$excludes>;
    
    while( <$large> ){
        print unless $stopwords{$_};
    }