return result;
}
public static void main(String[] args) throws Exception {
XQueryExecutor executor = new XQueryExecutor();
executor.runtime = new XQueryRuntime();
String query = "let $x := (1,2,3) return $x[2]";
System.out.println(args.length);
if (args.length > 0) {
query = args[0];
} else {