Help for this page

Select Code to Download


  1. or download this
    my @cleanwords = qw (hut hat);
    my @allwords = qw (hit het hat);
    foreach my $var (@cleanwords)
    ...
            print $var," not found\n";
            }
    }
    
  2. or download this
    use File::Slurp::Tiny 'read_file';
    my @allwords = read_file ($ref);
    
  3. or download this
    foreach (@allwords){
    print "allwords: ",$_,"\n";
    }