I was looking for ways to make python read lua scripts and execute functions, like this:
function foo()
*call python "test" def*
end
function bar()
print('honk')
end
on python:
def test():
print('tonk')
*call lua function "bar"
is there a way to make this?