![](https://secure.gravatar.com/avatar/0f27d1d5a2b55ed815bbc392de10211a.jpg?s=120&d=mm&r=g)
16 Feb
2011
16 Feb
'11
9:33 a.m.
Hi, I am new to ABCL and have a question to it's capabilities:My goal is to load an exsting part of a system coded in lisp into Java and to use the lisp code as basic library for a java application. Currently my approach is to load the lisp code with:Interpreter interpreter = Interpreter.createInstance();interpreter.eval("(load \"my-lisp-code.lisp\")");... So the lisp code must be present in the project every time it is running.Is there any chance to translate the lisp code to a Java source file by using ABCL? So it would not be necessary to provide the lisp code in the java application after it is translated once. Best regards Lukas