[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: RE: Confused about proper tail calls
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Wed, 1 Oct 2003 17:15:33 -0300
>My recommendation has been, for some time actually, that tail
>calls should just be tail calls, and that there should be a
>way of disabling them for people who want that (for example,
>during debugging).
The easiest way, but not very convenient, is to change all your tail calls from
return f(x,y,z)
to
return f(x,y,z),nil
--lhf