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 1837e71bc2 add a little commentary on does
FossilOrigin-Name: 79c8127fb44594ca2dd97da51fca9dfa7908d6b8905bd2742aeb8e79eab4325b
2017-10-25 01:10:58 +00:00
bin
doc Buffer for s:evaluate now at end of memory w/other string buffers. 2017-10-23 19:27:14 +00:00
example example/DictionaryStats now has average length w/o namespace 2017-10-24 14:55:53 +00:00
interfaces minor reordering in RetroForth.md; save a cell & improve readability 2017-10-25 01:02:02 +00:00
literate add a little commentary on does 2017-10-25 01:10:58 +00:00
tools more move from ```` to ~~~ fencing 2017-10-20 13:02:14 +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 minor reordering in RetroForth.md; save a cell & improve readability 2017-10-25 01:02:02 +00:00
README.md typo fix 2017-10-20 01:58:25 +00:00
REPORT-BUGS.md add document on reporting bugs 2017-10-23 17:42:13 +00:00
test-core.forth
Words.txt Buffer for s:evaluate now at end of memory w/other string buffers. 2017-10-23 19:27:14 +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.