Help for this page

Select Code to Download


  1. or download this
    
    foreach my $n (@natures){
    ...
     print OUT $_ if $_ =~ /$n/;
    }
    }
    
  2. or download this
    while(<FILE>){
    foreach my $n (@natures){
    ...
    }
    }
    }