function myfunction(msg)
print("this is msg fun " .. msg);
endlocal fun =_G["myfunction"];
if fun then
fun("is ok");
end
lua 根据函数名字符串来执行函数
时间: 2024-10-28 11:17:44
function myfunction(msg)
print("this is msg fun " .. msg);
endlocal fun =_G["myfunction"];
if fun then
fun("is ok");
end
lua 根据函数名字符串来执行函数