lua-users home
lua-l archive

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


is there any way in lua to execute the top of the stack, without the label?

In Lua, no. You can only access stack in C the side. Sometimes I miss this kind of 'feature', but it is just temporarily :)

what happens to it, does it get over-written by the next call to loadfile(),
or does it get garbage-collected?

Garbage collected.

--rb