question about the use of bfloat
- Subject: question about the use of bfloat
- From: Stavros Macrakis
- Date: Sun, 27 Jan 2008 22:01:27 -0500
>
> Nest(f, x, n) := ( for i thru n do x : f(x), x );
>
Since you don't use i, you can even simplify to:
:= (thru n do x: f(x), x)