diff options
author | dan <[email protected]> | 2023-05-24 09:42:51 -0400 |
---|---|---|
committer | dan <[email protected]> | 2023-05-24 09:42:51 -0400 |
commit | 7463bbc06285690b5b644362d115aa9e82ac6cb4 (patch) | |
tree | a91fa28043cecc01299c7e0636904744efbc4e24 /readme.md | |
parent | 73135a47e94480bd0b99e925153455798b507679 (diff) | |
download | forth-7463bbc06285690b5b644362d115aa9e82ac6cb4.tar.gz forth-7463bbc06285690b5b644362d115aa9e82ac6cb4.tar.bz2 forth-7463bbc06285690b5b644362d115aa9e82ac6cb4.zip |
add readme.md
Diffstat (limited to 'readme.md')
-rw-r--r-- | readme.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..bcc8cad --- /dev/null +++ b/readme.md @@ -0,0 +1,10 @@ +Forth-style Stack Language with C and JS implementations. + +JS implementation can be run by opening index.html in a web browser or running `node forth.js`. + +C implementation can be compiled with gcc (`gcc forth.c -o forth`) and then run `./forth`. + +Be aware: +- Neither implementation is finished +- The instruction sets have _different_ missing features +- This is a toy language, not intended for serious use |