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 d18608e9a6 python: dont print Dictionary pointer on startup
FossilOrigin-Name: c05b04f089d42d2feff5c065f2dd7fb3ca32cc06e60aceaba3bda0c161f5e122
2018-02-19 19:37:43 +00:00
bin
doc add docs for unix:io:puts and unix:io:putn 2018-02-16 20:40:29 +00:00
example new example: using numbers without # prefix 2018-02-06 17:53:48 +00:00
interfaces python: dont print Dictionary pointer on startup 2018-02-19 19:37:43 +00:00
literate rx: more formatting cleanups 2018-02-13 16:13:13 +00:00
tests move a few files 2017-11-16 15:09:33 +00:00
tools add javascript implementation & html-based interface layer 2018-02-06 15:36:34 +00:00
autopsy.forth add optional resolving of word names by address (autopsy) 2018-02-08 13:53:17 +00:00
build.sh some work on the build script 2018-02-02 20:21:45 +00:00
glossary.forth fix line ending issue w/glossary gopher server 2017-12-21 23:19:36 +00:00
LICENSE.md free pascal implementation from Rob Judd 2018-01-11 13:17:30 +00:00
Makefile add javascript implementation & html-based interface layer 2018-02-06 15:36:34 +00:00
ngaImage rx: inline the _packedcall and _packedjump values instead of doing a fetch to retrieve them. 2018-02-13 15:38:25 +00:00
NOTES some work on the build script 2018-02-02 20:21:45 +00:00
README.md some work on the build script 2018-02-02 20:21:45 +00:00
RELEASE_NOTES.md new words in rre: unix:io:putn, unix:io:puts 2018-02-16 20:26:13 +00:00
words.tsv add docs for unix:io:puts and unix:io:putn 2018-02-16 20:40:29 +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, NetBSD, 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 looks for the RETRO image (ngaImage) in the current working. If not found, this will use an embedded copy.

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.