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 41f9a04af7 clarify flags with until and while (thanks kioyshi)
FossilOrigin-Name: 4692965083e3df25d649d9e15bb2c1ebe366c311a2b452d7a2db2a727dfb4261
2018-04-12 11:28:03 +00:00
bin
doc clarify flags with until and while (thanks kioyshi) 2018-04-12 11:22:37 +00:00
example add new example: defining structures 2018-04-03 21:02:56 +00:00
interfaces stdlib: save 504 cells by moving some words in s: and using them to reimplement c:vowel? and c:whitespace? 2018-04-09 11:38:14 +00:00
literate clarify flags with until and while (thanks kioyshi) 2018-04-12 11:28:03 +00:00
tests
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
LICENSE.md
Makefile add javascript implementation & html-based interface layer 2018-02-06 15:36:34 +00:00
ngaImage stdlib: save 504 cells by moving some words in s: and using them to reimplement c:vowel? and c:whitespace? 2018-04-09 11:38:14 +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 stdlib: save 504 cells by moving some words in s: and using them to reimplement c:vowel? and c:whitespace? 2018-04-09 11:38:14 +00:00
words.tsv clarify flags with until and while (thanks kioyshi) 2018-04-12 11:22:37 +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.