I want to make a local instance of a Java Scanner class in a clojure program. Why does this not work:
Scanner
; gives me: count not supported on this
Correct syntax:
(let [s (Scanner. "a b c")] ...)