|
|
|
|
|
by nocoment
4471 days ago
|
|
It looks like an introduction to FORTH via Kafka.. There is a nice browser interpreter here:
http://forthfreak.net/jsforth80x25.html you can start with:
1 1 + .
(+ adds, . prints and this is clearly reverse polish notation) FORTH is in essence an accumulator CPU like the 68000, except it has an easier abstraction to define new instructions (aka "Words") to act like the + or . above. |
|