lljvm-translator
lljvm-translator copied to clipboard
Adds a compile interface for Python methods
e.g.,
val clazz = LLJVMClassLoader.loadClassFromBytecode(
className = "GeneratedClass",
bitcode = PythonFunc.compile(
s"""def pyfunc(x, y):
| return x + y
"""
))
...