public static void main(String[] args) {
   Stemmer s = new Stemmer();
   List l =
       s.stemString(
           "the a not they an one two three four five six seven eight nine on off no yes Mr "
               + "can be am it all run running runs ");
   System.out.println(l);
   System.out.println("Stem runs: " + s.stemOneWord("runs"));
 }