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 ba1e29fe0b update glossary w/new iOS words&changes
FossilOrigin-Name: 49c9e6383d6ed18bd4458b48619c3f972c2bb1a1b68bf5d35a542f97ec464a59
2018-04-22 20:14:18 +00:00
bin bin/listener now deprecated 2017-11-15 19:58:04 +00:00
doc update glossary w/new iOS words&changes 2018-04-22 20:14:18 +00:00
example Atua + Atua-WWW: use /usr/bin/env rre instead of hard coding a path. (thanks mpts) 2018-04-21 00:35:55 +00:00
interfaces rre: increase memory size to 12mb 2018-04-19 15:32:13 +00:00
literate clarify flags with until and while (thanks kioyshi) 2018-04-12 11:28:03 +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
build.sh rre now exits on stack overflow, stack underflow, memory write out of bounds 2018-04-13 11:21:56 +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 updated Makefile 2018-04-21 01:41:07 +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
README.md begin prep for 2018.4 release 2018-04-18 15:42:23 +00:00
RELEASE_NOTES.md final update to release notes 2018-04-21 01:47:04 +00:00
words.tsv update glossary w/new iOS words&changes 2018-04-22 20:14:18 +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:

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 looks for the RETRO image (ngaImage) in the current working. If not found, this will use an embedded copy.