On 05/25, Yann Orlarey wrote:
>
> For example the expression
> `()` or `NIL` in Lisp, which indicates an empty list, does not exist in
> Faust.

Yes. it's a pity ;)

Well, to some degree

        nil = 0:!;

resembles the empty list. Say, output(nil) == 0 and

        process = sin(nil);

works "as expected", same as

        process = sin;


Yann, Stephane, I am curious if it is possible to change the compiler to
make par(i, 0, expr) work?

Some time ago I had to do something like

        mypar(0) = 0:!;
        mypar(n) = par(i, n, expr(i));

and it was a bit annoying.

Oleg.



_______________________________________________
Faudiostream-users mailing list
Faudiostream-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/faudiostream-users

Reply via email to