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 2de329f292 nga: more commentary; switch to new style code blocks
FossilOrigin-Name: edcfc3c05bd3052d98a9deeb9883a49bdb4771622cefee60d107c324da0cea22
2018-01-10 21:05:32 +00:00
bin bin/listener now deprecated 2017-11-15 19:58:04 +00:00
doc glossary: more examples 2018-01-05 21:01:05 +00:00
example add n:binary-rep to examples 2017-12-12 19:35:57 +00:00
interfaces rre: work on making extension naming constants more consistent 2018-01-10 14:53:30 +00:00
literate nga: more commentary; switch to new style code blocks 2018-01-10 21:05:32 +00:00
tests move a few files 2017-11-16 15:09:33 +00:00
tools
build.sh rre: more commentary, begin work on refactoring the execute() function 2018-01-09 14:47:13 +00:00
glossary.forth fix line ending issue w/glossary gopher server 2017-12-21 23:19:36 +00:00
LICENSE.md bump copyright year 2018-01-09 14:00:05 +00:00
Makefile
ngaImage Bump version; add \r to s:with-format 2017-12-21 23:19:13 +00:00
README.md
RELEASE_NOTES.md update RELEASE NOTES 2018-01-10 18:15:03 +00:00
words.tsv glossary: more examples 2018-01-05 21:01:05 +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.