static byte[] jiapiHelloWorld() throws MethodExistsException {
JiapiClass c = JiapiClass.createClass("HelloWorld");
// No API to set SourceFile!
JiapiMethod method = c.addMethod(Modifier.PUBLIC, "<init>", emptySig);
InstructionList il = method.getInstructionList();
InstructionFactory iFactory = il.getInstructionFactory();
il.add(iFactory.aload(0));
il.add(iFactory.invoke(0, "java/lang/Object", "<init>", emptySig));
il.add(iFactory.returnMethod(method));