[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: [novice-question/suggestion] vararg propagation
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Fri, 10 Nov 2000 10:37:15 -0200 (EDT)
>Is there an __easy__ way to propagate a variable number of
>arguments to subfunctions without getting nested
>argument tables ?
Use "call". In your example, foo would be:
return call(sum, arg ) -- return sum
--lhf