retroforth/book/Overview
crc 814882c9e1 migrate some stuff into the new book source
FossilOrigin-Name: 43cc10b68f8c72fcb6dd4c66efb38e6f5bc6819f0f4434b6980391c8f89005f9
2019-03-15 12:06:56 +00:00

19 lines
748 B
Text

# RETRO: a Modern, Pragmatic Forth
Welcome to RETRO, my personal take on the Forth language. This
is a modern system primarily targetting desktop, mobile, and
servers, though it can also be used on some larger (ARM, MIPS32)
embedded systems.
The language is Forth. It is untyped, uses a stack to pass data
between functions called words, and a dictionary which tracks
the word names and data structures.
But it's not a traditional Forth. RETRO draws influences from
many sources and takes a unique approach to the language.
RETRO has a large vocabulary of words. Keeping a copy of the
Glossary on hand is highly recommended as you learn to use RETRO.
This book will hopefully help you develop a better understanding
of RETRO and how it works.