lua-users home
lua-l archive

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


Andrew:

On Mon, Apr 9, 2018 at 9:36 PM, Andrew Gierth
<andrew@tao11.riddles.org.uk> wrote:
> ... The only way to communicate values between independent states
> is to serialize them in some form.

Not really. We do it by just recursively copying, similar to a
serialize+deserialize loop, nearly the same problems, but you avoid
all the problems of inventing a format and managing the serialized
format ( and encounter nearly the same problems, loop detection,
functions, userdata.. )

Francisco Olarte.