Example #1
0
        public static LuaFuncRef Compile(string Str)
        {
            if (LL.luaL_loadstring(L, Str) != 0)
            {
                throw new Exception(LL.lua_tostring(L, -1));
            }

            return(new LuaFuncRef(L));
        }