[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: variable parameter list ?
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Fri, 15 Feb 2002 14:14:16 -0200
>function wantargs(allmyargs)
> otehrfunction(allmyargs)
>end
Try
function wantargs(...)
call(otehrfunction,arg)
end
--lhf