RE: [colorforth] Machineforth IFs
- Subject: RE: [colorforth] Machineforth IFs
- From: Mark Slicker <maslicke@xxxxxxxxxxx>
- Date: Fri, 31 Jan 2003 12:57:53 -0500 (EST)
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