0

我正在为我父亲的杂货店制作一个 DBMS,我想将账单发送到客户的手机号码。所以我认为 Lua 将处理 Solar 2d 中的应用程序界面和 python 的所有后端工作。但我不知道如何将它们构建在一起,以便它们相互协作,并且无需在每个会话中启动 python 解释器。这是伪代码

--lua code 
local py = require("python") -- There I import my python module
local my_file = require("my python file")
 
py.my_file.some_function("some Value")

#then in python after the script run it executes python code 
import my_lua_file_output

def some_function(someValue): # this is the same function used in above lua script 
    my code 

先感谢您。

4

0 回答 0