I am using a ClojureScript browser REPL in SublimeText, and there are certain Java methods included:
(.toUpperCase "blub") --> "BLUB"
However, I'd like to use .toBinaryString, but java.lang.Integer is not included and I'm not sure how to import it. (import %) doesn't work no matter what format I use for %; it always throws:
cannot read property "call" of undefined
My question is two parts; how can I see what Java libs are included in the REPL, and how do I use other libraries that aren't included?