You. Forth. Simplicity.

git repository
download
prior releases
documentation wiki
issue tracker
mailing list and forum
irc channel and logs
try it


This wiki remains, like the original forum, mainly for historical value. There is a new wiki which, while having less content, is more secure and oriented towards modern Retro implementations.

reload node | edit | recent changes | front page


word
Every Forth language element that can be used interactively or within a program is called a word. Most of the time words are delimited by spaces.

definition
The source code for a word.

TOS
Top of stack

NOS
Next on stack, the item below TOS

TORS
Top of return stack.

NORS
Next on return stack, the item below TORS

CELL
The only real data type recognized by RetroForth. A CELL is a 32-bit integer. You can use special words to fetch and store bytes (8 bits) or words (16 bits). Internally all values, handles, and types are stored and dealt with as CELLS.