I have this simple Java source:
class HelloJava {
public static String greetMe() {
return "Hello, this is Java calling!";
}
}
which I compile down into a class file called HelloJava.class
HelloWorld.class is in the same directory that I launch the Repl from.
How can I now call HelloJava.greetMe() in the Clojure REPL?