Lua 环境安装
Linux 系统上安装
Linux amp;amp;amp; Mac上安装 Lua 安装非常简单,只需要下载源码包并在终端解压编译即可,本文使用了5.3.0版本进行安装:
curl -R -O http://www.lua.org/ftp/lua-5.3.0.tar.gz
tar ...……
1.lua访问c中的栈变量
void lua_setglobal (lua_State *L, const char *name);
将虚拟栈中,将栈顶元素弹出,作为全局 lua 变量 name 的值。 Pops a value from the stack
and sets it as the new value of global n ...……