[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Does Lua support Lazy Evaluation?
- From: Thomas Hafner <thomas@...>
- Date: 09 Dec 2006 01:02:01 +0100
Fabien <fleutot+lua@gmail.com> wrote/schrieb <956373d40612081543k4006279arb5f7f6acfe62f5e7@mail.gmail.com>:
> On 12/8/06, Alex Queiroz <asandroq@gmail.com
>
> > *Does Lua support Lazy Evaluation?*
One implementation of Scheme's procedures ``delay'' and ``force'' just
use lambda, so it's no problem to mimic that in Lua. By that means,
Lua supports lazy evaluation.
Regards
Thomas