In Logo Language, cascade
is a procedure to to compose a function with itself several times (it is almost like fold
in functional language).
Example:
add 4 add 4 add 4 5 --> cascade 3 [add 4 ?1] 5 == 17
2^8 --> cascade 8 [?1 * 2] 1
fibonacci 5 --> (cascade 5 [?1 + ?2] 1 [?1] 0)
factorial 5 --> (cascade 5 [?1 * ?2] 1 [?2 + 1] 1)
General notation for multi-input cascade, in Logo:
(cascade how many function1 start1 function2 start2 ...) with:
function1 -> ?1 ,
function2 -> ?2 ...
Cascade returns the final value of ?1.
In Rebol:
cascade1: func [howmany function1 start1] [....]
cascade2: func [howmany function1 start1 function2 start2] [....]
How to write cascade1 and cascade2 in Rebol ?
Here is a somewhat working
cascade
in Rebol. It won't work withop!
datatype--i.e.+
,*
--but it will work withadd
andmultiply
. You may want to check out the higher order functions script to see some other examples. I haven't had time to writecascade2
yetWith your examples:
will result in:
and
Will result in: