[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Storing Lua State.
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Wed, 29 Aug 2001 10:01:20 -0300 (EST)
>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