On Mon, Feb 10, 2025 at 6:32 AM Alexander Burger <picolisp@software-lab.de> wrote:
> On Mon, Feb 10, 2025 at 02:06:52PM +0100, Alexander Burger wrote: > > : (let N 999999 (bench (tco (N) (or (=0 N) (tc (dec N)))))) > > 0.038 sec > > -> 0 > > For the records - and to show the absurdity of TCO - this is of course > the same as > > : (let N 999999 (bench (until (=0 N) (dec 'N)))) > 0.032 sec > -> 0 > > 👍👍 /Lindsay