32 lines
285 B
Plaintext
32 lines
285 B
Plaintext
Forth
|
|
=====
|
|
|
|
A weekend implementation of the Forth programming language
|
|
|
|
Compile
|
|
=====
|
|
|
|
```
|
|
make all
|
|
make clean
|
|
```
|
|
|
|
How to use
|
|
==========
|
|
|
|
These are the currently accepted operators:
|
|
|
|
+ add
|
|
|
|
- substract
|
|
|
|
* multiply
|
|
|
|
/ divide
|
|
|
|
. print top of stack
|
|
|
|
< bit shift left
|
|
|
|
> bit shift right
|