home .. forth .. colorforth mail list archive ..

RE: [colorforth] Machineforth IFs


On Fri, 31 Jan 2003, [iso-8859-1] Fréderic DUBOIS wrote:

>
> Thanks I'll meditate that and the material (BTW what are vectored jumps? -
> you mean DEFERs :) for the week-end.
>

jump a b c d ...

where a, b, c, d ... are compiled calls (green, not macros)

The 'jump' word branches to the corresponding word in the vector that
follows, the first being indexed by 0.

For example:

0 jump a b c d

is equivalent to

a ;

3 jump a b c d

is equivalent to

d ;

Mark


---------------------------------------------------------------------
To unsubscribe, e-mail: colorforth-unsubscribe@xxxxxxxxxxxxxxxxxx
For additional commands, e-mail: colorforth-help@xxxxxxxxxxxxxxxxxx
Main web page - http://www.colorforth.com