Forth Programming

By Nacho Cabanes Latest change: 14-Ago-2007 /   Versión en Español 
Latest changes...
  • 14-Ago-2007: First english version

What is Forth?

Forth is a little-used computer programming language, quite different from conventional languages, which is based on a stack and uses inverted polish notation. For example, to write the sum of 4 and 7 you would write  "4 7 + ." (stack 4, stack 7, sum the two elements on the top of the stack, show the result).

Many people consider"Starting forth", by Leo Brodie, the best introduction to Forth.

You can find Forth tutorials in many other places, such as:
http://dec.bmth.ac.uk/forth/forth.html (Forth: an underview)
http://www.zeppe.com/forthtut.html (Forth tutorial)

If you want Forth interpreters or compilers:

 


Changes in this page

14/August/2007 First english version of this page.

(Back to top)