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 a367be21f6 book: expand on buffers
FossilOrigin-Name: 0e03cafd32c80a07b41b6d51fb9dfbe9bee9e9bc5e76bec2be63274e049cc455
2019-03-20 11:57:43 +00:00
book book: expand on buffers 2019-03-20 11:57:43 +00:00
doc glossary: fix a duplicate entry 2019-03-19 18:53:12 +00:00
example add strip-html example 2019-03-14 20:01:00 +00:00
interfaces fix a typo causing crashes on display of numbers 2019-03-14 18:19:10 +00:00
literate fix a typo causing crashes on display of numbers 2019-03-14 18:19:10 +00:00
man add manpage for retro-describe 2019-03-06 18:29:14 +00:00
package rename packages -> package 2019-02-26 04:20:12 +00:00
tests drop set:from-results 2019-01-11 03:26:11 +00:00
tools increase max image size for retro-embedimage 2019-02-21 21:59:35 +00:00
build.sh fix other build files 2018-11-14 22:56:30 +00:00
BUILDING.md add notes on Python, C# implementations to BUILDING 2019-02-07 02:21:50 +00:00
glossary.forth rre: add sys:name 2019-03-06 17:22:56 +00:00
LICENSE.md unix interface: add some directory related words 2019-02-01 20:26:17 +00:00
make-book.retro book: add section on obtaining RETRO 2019-03-20 11:37:40 +00:00
Makefile add manpage for retro-describe 2019-03-06 18:29:14 +00:00
Makefile.linux more linux fixes 2019-02-20 16:17:59 +00:00
ngaImage fix a typo causing crashes on display of numbers 2019-03-14 18:19:10 +00:00
README.md fix a typo in the README (thanks Kiyoshi) 2019-02-07 04:10:34 +00:00
RELEASE_NOTES.md book: begin work on windows build instructions 2019-03-18 20:55:32 +00:00
RETRO-Book.md book: expand on buffers 2019-03-20 11:57:43 +00:00
retro-describe.forth new tool: retro-describe 2019-03-06 17:33:09 +00:00
retro.blocks.gz block editor: adjust for use on 80x24 display, add a sample blockfile 2019-02-18 19:03:09 +00:00
words.tsv glossary: fix a duplicate entry 2019-03-19 18:53:12 +00:00

RETRO FORTH

RETRO is a modern, pragmatic Forth drawing influences from many sources. It's clean, elegant, tiny, and easy to grasp and adapt to various uses.

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

Quick Start

For most systems (FreeBSD, NetBSD, OpenBSD, macOS, Linux):

make

You will need a standard C compiler and make. The retro-ri binary requires (n)curses, but you can ignore any build/link errors by doing:

make -kis

If you are building on an older Linux system and are running into problems, try using the alternative Makefile:

make -f Makefile.linux

Executables

Binaries will be placed in the bin directory.

The primary executable is retro. This is used for running the examples and the Atua (gopher) & Casket (http) servers that power forthworks.com.

The retro executable embeds the image into the binary, making it trivial to copy and deploy.

This interface layer also extends the language with many new words and vocabularies, adds scripting, file i/o, gopher, and floating point math support.

The retro executable can handle a variety of command line arguments:

retro -i

Starts the listener, a basic REPL for interactive use.

retro -c

Starts the listener, a basic REPL for interactive use. With -c, it runs in character breaking mode, where input is run as soon as a space or enter is encountered. This requires RETRO to have been built with TERMIOS support.

retro filename

This will run the code in the specified file, then exit. This is also used to run programs as shell-type scripts using a header line like #!/usr/bin/env retro.

retro -i -f filename

This will run the code in the specified file, then start the listener.

retro -c -f filename

This will run the code in the specified file, then start the listener in character breaking mode.

retro -h

Displays a summary of the command line arguments.

Source files for use with retro are written with code in fenced blocks:

commentary here
 
~~~
code here
~~~

Anything outside the fenced blocks will be ignored.

Commercial Versions

I provide proprietary versions of RETRO for iOS and macOS. These use a custom, dual pane editor-based environment and some platform specific words and extensions. They do use the same image and virtual machine as retro, retro-repl, etc.

iOS: https://itunes.apple.com/us/app/retro-forth-12/id1170943580?ls=1&mt=8

macOS: https://itunes.apple.com/us/app/retro-forth/id1317494014?ls=1&mt=12

The macOS application is also availble for free, though the source is not published.

Proceeds from these are used to pay for various project related expenses (servers, domains, hardware upgrades, and an occasional cup of tea).

Alternative Implementations

This source tree includes additional implementations in C#, JavaScript, Pascal, and Python. These are not officially supported, but are provided for your use if the C implementations will not suffice.