pfe-forth-ext ? Forth Base system
INTERPRET-NEXT ?=>? ( | ) ; | ? |
"FORTH"
;INTERPRET-FIND ( CS: dest* -- dest* ) ?=>? ( | ) ; | ? |
"FORTH"
;INTERPRET-NUMBER ( CS: dest* -- dest* ) ?=>? ( | ) ; | ? |
"FORTH"
;INTERPRET-NOTHING ?=>? ( | ) ; | ? |
"FORTH"
;INTERPRET-UNDEFINED ?=>? ( | ) ; | ? |
"FORTH"
;
INTERPRET-NEXT - no description, sorry
INTERPRET-FIND ( CS: dest* -- dest* ) executes ( -- ) experimental => "FORTH"
check the next word from QUERY
and try to look it up
with FIND
- if found then execute the token right away
and branch out of the loop body (usually do it AGAIN
)
INTERPRET-NUMBER ( CS: dest* -- dest* ) executes ( -- ) experimental => "FORTH"
check the next word from QUERY
and try to parse it up
with => ?NUMBER - if parseable then postpone the number for execution
and branch out of the loop body (usually do it AGAIN
)
INTERPRET-NOTHING - no description, sorry
INTERPRET-UNDEFINED - no description, sorry