// System.out.println("compiling:'" + maybeLibName + "'");
String compileLibCommand = CompileLibAction.compileLibCommand(maybeLibName);
// System.out.println("Sending command: '" + compileLibCommand + "'");
Response res = c.send("op", "eval", "code", compileLibCommand);
// System.out.println("compilation response: '" + res + "'");
if (res.values().isEmpty()) {
// System.out.println(("oops, weird error when compiling '" + maybeLibName + "'"));
} else {
Object result = res.values().get(0);
// System.out.println("ClojureVisitor: " + result);
if (result instanceof Map) {