lua-users home
lua-l archive

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


On Fri, Sep 24, 2010 at 12:28:39PM +0300, Cosmin Apreutesei wrote:
> apologies, replace collectgarbage() with collectgarbage(collect); the
> output is the same.

It would be, unless you have a variable called "collect" that contains
the string value "collect" :)

You probably want to try collectgarbage("collect")

B.