Re: What am I not getting here?

2011-01-07 Thread new2clojure
g nword = spellChecker.check(word); if (nword.equals(word)) { System.out.println(" > Correct!"); } else { System.out.prin

What am I not getting here?

2011-01-06 Thread new2clojure
Hi, I am trying to store into a map the frequency of each [a-z]+ word in a file. When I run this code in the repl the resulting dictionary is empty. How should I adapt my code to get this functionality right?. Thank you in advance (import (java.io BufferedReader FileReader)) (def dictionary {}