Or do I have to specifically enumerate every class that I import?
I'm just learning Clojure now, and it seems useful to be able to do something like this in the REPL:
(import '(java.io *))
Not that this is valid syntax, but it would be nice to have something that does the equivalent. It would save some typing, especially when tinkering around. In actual production code I always enumerate each class that I'm importing, regardless of the language, but it's pretty convenient not to have to do so.