I am learning clojure on tryclj. Why is this not working? It should work based on this.
> (Character/toLowerCase \F)
java.lang.RuntimeException: Unable to resolve symbol: toLowerCase in this context
> (.toLowerCase "FRED")
java.lang.RuntimeException: Unable to resolve symbol: toLowerCase in this context
Update
The problem was the browser. I was using chrome originally. I tried it in IE and firefox and java.lang.RuntimeException: does not appear. I didn't realise the browser would make a difference.


(Character/toLowerCase \F)- cfrick(.toString 1)throwsjava.lang.RuntimeException: Unable to resolve symbol: toString in this context. - juan.facorro