Find a file
2010-09-09 12:31:38 -04:00
src Fixed a bug in the way that function existing words were being looked up during a function definition. 2010-09-09 12:31:38 -04:00
README.md Fixed a bug in the way that function existing words were being looked up during a function definition. 2010-09-09 12:31:38 -04:00

russ forth

A simple Forth interpreter in Ruby (1.9).

1 2 dup + +
.
5

3 2 1 + *
.
9

: sq dup * ;

2 sq
.
4