public class FindAnagrams { public static void main (String[] argv) { // Get dictionary. String[] words = WordTool.getDictionary (); // We'll count the anagrams found. int count = 0; // Compare each pair of words. for (int i=0; i