int CHello(lua_State *L){ const char *name = lua_tostring(L,-1); // 從堆疊頂部取得一個字串lua_pop(L, 1); // 將字串彈出堆疊printf("Hello, %s\n", ...
確定! 回上一頁