摘要: ``` #include #include #include #include #include static int say_hello(lua_State *L) { const char *s = lua_tostring(L,1); printf("hell,%s\n",s); return 0; } int main(void) { lua_State *L = l... 阅读全文
posted @ 2019-04-30 11:23 罗曼骑士 阅读(483) 评论(0) 推荐(0) 编辑