Retro is a modern, pragmatic Forth drawing influences from many sources. It's clean, elegant, small, easy to grasp, and adaptable to many tasks.
Find a file
crc 851f1f4463 some slight reorg, commentary in rre.forth
FossilOrigin-Name: 2c117dc84ead9ea4ad79d07659cd40309f58fe89d19651b492c4c3ea1ee40a18
2017-10-20 03:05:43 +00:00
bin improve "listener" 2017-10-17 00:52:07 +00:00
doc restore more docs 2017-10-20 02:57:30 +00:00
example fix 99bottles example 2017-10-20 01:57:27 +00:00
interfaces some slight reorg, commentary in rre.forth 2017-10-20 03:05:43 +00:00
literate use ~~~ instead of ```` 2017-10-20 01:10:38 +00:00
tools source -> interfaces; remove tanu 2017-10-20 01:16:46 +00:00
LICENSE.md fix 99bottles example 2017-10-20 01:57:27 +00:00
Makefile source -> interfaces; remove tanu 2017-10-20 01:16:46 +00:00
ngaImage Initial checkin (from 58fa921 in the old git repo) 2017-10-16 16:09:39 +00:00
README.md typo fix 2017-10-20 01:58:25 +00:00
test-core.forth Initial checkin (from 58fa921 in the old git repo) 2017-10-16 16:09:39 +00:00
Words.txt update Words.txt listing w/all words currently provided (including extras from RRE) 2017-10-19 17:47:28 +00:00

RETRO

RETRO is a modern, pragmatic Forth drawing influences from many sources.

Features:

  • Open Source (ISC License)
  • Portable (runs on a MISC-style virtual machine)
  • Small source & binaries
  • Builds into a single, self contained binary for easy deployment
  • Sources in literate format, using a Markdown variant

The language is a Forth dialect drawing influence from some of Chuck Moore's newer ideas. It's clean, elegant, tiny, and easy to grasp and adapt to various uses.

Quick Start

For FreeBSD, macOS, Linux:

make

Binaries will be found in the bin directory. The ones of interest are:

rre

Short for run retro and exit, this is the primary interface for RETRO. The rre interface is used to run the examples and Atua Gopher and HTTP servers that power forthworks.com.

rre embeds the RETRO image into the binary, making it trivial to copy and deploy.

repl

This is a basic read-evaluate-print-loop for interactive use. It's intended for quick tests and as an easy starting point for new interfaces. The repl interface requires the RETRO image (ngaImage) in the current working directory to operate.

listener

Wrapping a shell script, some RETRO code, and using the rre interface, this is a slightly nicer alternative to the basic repl for interactive use.