lua-users home
lua-l archive

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


>function wantargs(allmyargs)
>	otehrfunction(allmyargs)
>end

Try

function wantargs(...)
	call(otehrfunction,arg)
end

--lhf