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 3becf4d899 continue adding commentary to RetroForth source
FossilOrigin-Name: 74121e8f5c8e3d53a59dc4658d12081892494a3ec9a863b876585b1bb5d265d2
2017-10-23 18:56:56 +00:00
bin
doc fix bug in StringToNumberWithBase; add string tokenizer example 2017-10-22 19:30:47 +00:00
example shorter lines in example/is-palindrome.forth 2017-10-23 17:15:10 +00:00
interfaces add s:const to stdlib 2017-10-20 13:30:31 +00:00
literate continue adding commentary to RetroForth source 2017-10-23 18:56:56 +00:00
tools more move from ```` to ~~~ fencing 2017-10-20 13:02:14 +00:00
LICENSE.md
Makefile
ngaImage add s:const to stdlib 2017-10-20 13:30:31 +00:00
README.md
REPORT-BUGS.md add document on reporting bugs 2017-10-23 17:42:13 +00:00
test-core.forth
Words.txt add s:const to stdlib 2017-10-20 13:30:31 +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.