lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


>Is it possible to completly store and then retrieve complete Lua state?
>including values of all variables and tables.

Not directly, but you can run through all global variables with foreach
and save the values. See test/save.lua in the distribution. See also LuaPickle
at www.dekorte.com/Software/Lua/LuaPickle/ .
--lhf