Home

Awesome

GoDoc Go Report Card license Release

foth

A simple implementation of a FORTH-like language, hence foth which is close to forth.

If you're new to FORTH then the wikipedia page is a good starting point, and there are more good reads online such as:

In brief FORTH is a stack-based language, which uses Reverse Polish notation. The basic thing in Forth is the "word", which is a named data item, subroutine, or operator. Programming consists largely of defining new words, which are stored in a so-called "dictionary", in terms of existing ones. Iteratively building up a local DSL suited to your particular task.

This repository was created by following the brief tutorial posted within the following Hacker News thread, designed to demonstrate how you could implement something like FORTH, in a series of simple steps:

The comment-thread shows example-code and pseudo-code in C, of course this repository is written in Go.

Features

The end-result of this work is a simple scripting-language which you could easily embed within your golang application, allowing users to write simple FORTH-like scripts. We implement the kind of features a FORTH-user would expect:

Installation

You can find binary releases of the final-version upon the project release page, but if you prefer you can install from source easily.

Either run this to download and install the binary:

$ go get github.com/skx/foth/foth@v0.5.0

Or clone this repository, and build the executable like so:

cd foth
go build .
./foth

The executable will try to load foth.4th from the current-directory, so you'll want to fetch that too. But otherwise it should work as you'd expect - the startup-file defines several useful words, so running without it is a little annoying but it isn't impossible.

Embedded Usage

Although this is a minimal interpreter it can be embedded within a Golang host-application, allowing users to write scripts to control it.

As an example of this I put together a simple demo:

This embeds the interpreter within an application, and defines some new words to allow the user to create graphics - in the style of turtle.

Anti-Features

The obvious omission from this implementation is support for strings in the general case (string support is pretty limited to calling strlen, and printing strings which are constant and "inline").

We also lack the meta-programming facilities that FORTH users would expect, in a FORTH system it is possible to implement new control-flow systems, for example, by working with words and the control-flow directly. Instead in this system these things are unavailable, and the implementation of IF/DO/LOOP/ELSE/THEN are handled in the golang-code in a way users cannot modify.

Basically we ignore the common FORTH-approach of using a return-stack, and implementing a VM with "cells". Instead we just emulate the behaviour of the more advanced words:

Implementation Approach

The code evolves through a series of simple steps, contained in the comment-thread, ultimately ending with a final revision which is actually useful, usable, and pretty flexible.

While it would certainly be possible to further improve the implementation I'm going to declare this project as "almost complete" for my own tastes:

If you wanted to extend things further then there are some obvious things to work upon:

Pull-requests adding additional functionality will be accepted with thanks.

Implementation Overview

Each subdirectory within this repository gets a bit further down the comment-chain.

In terms of implementation two files are largely unchanged in each example:

Each example builds upon the previous ones, with a pair of implementation files that change:

Part 1

Part one of the implementation only deals with hard-coded execution of "words". It only supports the basic mathematical operations, along with the ability to print the top-most entry of the stack:

 cd part1
 go build .
 ./part1
 > 2 3 + 4 5 + * print
 45.000000
 ^D

See part1/ for details.

Part 2

Part two allows the definition of new words in terms of existing ones, which can even happen recursively.

We've added dup to pop an item off the stack, and push it back twice, which has the ultimate effect of duplicating it.

To demonstrate the self-definition there is the new function square which squares the number at the top of the stack.

 cd part2
 go build .
 ./part2
 > 3 square .
 9.000000
 > 3 dup + .
 6.000000
 ^D

See part2/ for details.

Part 3

Part three allows the user to define their own words, right from within the REPL!

This means we've removed the square implementation, because you can add your own:

 cd part3
 go build .
 ./part3
 > : square dup * ;
 > : cube dup square * ;
 > 3 cube .
 27.000000
 > 25 square .
 625.000000
 ^D

See part3/ for details.

NOTE: We don't support using numbers in definitions, yet. That will come in part4!

Part 4

Part four allows the user to define their own words, including the use of numbers, from within the REPL. Here the magic is handling the input of numbers when in "compiling mode".

To support this we switched our Words array from int to float64, specifically to ensure that we could continue to support floating-point numbers.

 cd part4
 go build .
 ./part4
 > : add1 1 + ;
 > -100 add1 .
 -99.000000
 > 4 add1 .
 5.000000
 ^D

See part4/ for details.

Part 5

This part adds do and loop, allowing simple loops, and emit which outputs the ASCII character stored in the topmost stack-entry.

Sample usage would look like this:

> : cr 10 emit ;
> : star 42 emit ;
> : stars 0 do star loop cr ;
> 4 stars
****
> 5 stars
*****
> 1 stars
*
> 10 stars
**********
^D

Here we've defined two new words cr to print a return, and star to output a single star.

We then defined the stars word to use a loop to print the given number of stars.

(Note that the character * has the ASCII code 42).

do and loop are pretty basic, allowing only loops to be handled which increment by one each iteration. You cannot use the standard i token to get the current index, instead you can see them on the stack:

So to write out numbers you could try something like this, using dup to duplicate the current offset within the loop:

 > : l 10 0 do dup . loop ;
 > l
 0.000000
 1.000000
 2.000000
 ..
 8.000000
 9.000000

 > : nums 10 0 do dup 48 + emit loop ;
 > nums
 0123456789>

See part5/ for details.

Part 6

This update adds a lot of new primitives to our dictionary of predefined words:

In addition to these new primitives the driver, main.go, was updated to load and evaluate foth.4th on-startup if it is present.

Sample usage:

cd part6
go build .
./part6
> : hot 72 emit 111 emit 116 emit 10 emit ;
> : cold 67 emit 111 emit 108 emit 100 emit 10 emit ;
> : test_hot  0 > if hot then ;
> : test_cold  0 <= if cold then ;
> : test dup test_hot test_cold ;
> 10 test
Hot
> 0 test
Cold
> -1 test
Cold
> 10 test_hot
Hot
> 10 test_cold
> -1 test_cold
Cold
^D

See part6/ for the code.

NOTE: The if handler allows:

: foo $COND IF word1 [word2 .. wordN] then [more_word1 more_word2 ..] ;

This means if the condition is true then we run word1, word2 .. and otherwise we skip them, and continue running after the then statement. Specifically note there is no support for else. That is why we call the test_host and test_cold words in our test definition. Each word tests separately.

As an example:

> : foo 0 > if star star then star star cr ;

If the test-passes, because you give a positive number, you'll see FOUR stars. if it fails you just get TWO:

 > 2 foo
 ****
 > 1 foo
 ****
 > 0 foo
 **
 > -1 foo
 **

This is because the code is synonymous with the following C-code:

 if ( x > 0 ) {
    printf("*");
    printf("*");
 }
 printf("*");
 printf("*");
 printf("\n");

I found this page useful, it also documents invert which I added for completeness:

Part 7

This update adds a basic level of support for strings.

Sample usage:

cd part7
go build .
./part7
> : steve "steve" ;
> steve strlen .
5
> steve strprn .
steve
^D

See part7/ for the code.

Final Revision

The final version, stored beneath foth/, is pretty similar to the previous part from an end-user point of view, however there have been a lot of changes behind the scenes:

See foth/ for the implementation.

BUGS

A brief list of known-issues:

Loops

The handling of loops isn't correct when there should be zero-iterations:

     > : star 42 emit ;
     > : stars 0 do star loop 10 emit ;
     > 3 stars
     ***
     > 1 stars
     *
     > 0 stars
     *
     ^D

NOTE: In gforth the result of 0 0 do ... loop is actually an infinite loop, which is perhaps worse!

In our stars definition we handle this case by explicitly testing the loop value before we proceed, only running the loop if the value is non-zero.

See Also

This repository was put together after experimenting with a scripting language, an evaluation engine, putting together a TCL-like scripting language, writing a BASIC interpreter and creating yet another lisp.

I've also played around with a couple of compilers which might be interesting to refer to:

Github Setup

This repository is configured to run tests upon every commit, and when pull-requests are created/updated. The testing is carried out via .github/run-tests.sh which is used by the github-action-tester action.