lua-users home
lua-l archive

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


> Was any decision made on whether dofile parameters
> and return values will be modified in Lua 5.1?

What do you mean?
"dofile" returns everything the chunk returns.
"dofile" does not pass arguments to the chunk. If you want this, do
	local f=loadfile"xxx"
	f(a1,a2,a3,a4)
--lhf