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 e2f45eea74 build script now rebuilds glossary
FossilOrigin-Name: de1f24fe8ca263480c489137da45bd496bf7a27b6eb3c6f8303fae58ffc92561
2017-11-15 20:34:20 +00:00
bin bin/listener now deprecated 2017-11-15 19:58:04 +00:00
doc build script now rebuilds glossary 2017-11-15 20:34:20 +00:00
example editor: no longer use external mv to update file 2017-11-15 19:45:49 +00:00
interfaces rre: add -i for interactive mode 2017-11-15 19:57:17 +00:00
literate fix s:trim-left 2017-11-14 01:47:26 +00:00
tools use build.sh instead of Makefiles 2017-11-08 21:33:18 +00:00
build.sh build script now rebuilds glossary 2017-11-15 20:34:20 +00:00
glossary.forth move glossary.forth to top leel 2017-11-12 20:10:27 +00:00
LICENSE.md backport change from the git 2017-11-05 22:06:44 +00:00
Makefile use build.sh instead of Makefiles 2017-11-08 21:33:18 +00:00
ngaImage fix s:trim-left 2017-11-14 01:47:26 +00:00
README.md editor: now has [ ] to move to start, end of file 2017-11-15 01:11:34 +00:00
REPORT-BUGS.md add document on reporting bugs 2017-10-23 17:42:13 +00:00
test-core.forth Initial checkin (from 58fa921 in the old git repo) 2017-10-16 16:09:39 +00:00
words.tsv build script now rebuilds glossary 2017-11-15 20:34:20 +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:

./build

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.