FORTH and Threaded Interpretive Languages

first previous next last


Max-Gerd Retzlaff, 5. July 2008

https://entropia.de/GPN7

Jonesforth by Richard W. M. Jones

BRANCHING --------------------------------------------------------------------------- IF, THEN, ELSE, WHILE, REPEAT, etc. can be implemented entirely in FORTH. For example, this: condition-code IF true-part THEN rest-code compiles to: condition-code 0BRANCH OFFSET true-part rest-code | ^ | | +-------------+ 34