lua-users home
lua-l archive

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


Although it's not the same thing, here is something that you can do right now:
Write your chunk as
	return function (a,b,c,...)
		...
	end
Then, load the chunk, run it, push the values of the arguments,
and run "it" again.
--lhf