Help for this page

Select Code to Download


  1. or download this
    while ( <SFILE> ) {
      chomp
    ...
            }
        print TFILE "@words\n<br>";
    }
    
  2. or download this
    my %words;
    while (<DFILE>) {
    ...
        my ($key, $val) = split /:/;
        $words{$key} = $val;
    };