diff options
author | dan <[email protected]> | 2023-05-26 15:09:31 -0400 |
---|---|---|
committer | dan <[email protected]> | 2023-05-26 15:09:31 -0400 |
commit | 527287370e18d477b446a372ea1fd205893d1660 (patch) | |
tree | 7fcae7433cd8f71f2d076d28716a043fa1601feb | |
parent | bf2482154d14333b0eb2641423f3406f08c06973 (diff) | |
download | forth-527287370e18d477b446a372ea1fd205893d1660.tar.gz forth-527287370e18d477b446a372ea1fd205893d1660.tar.bz2 forth-527287370e18d477b446a372ea1fd205893d1660.zip |
docs: correct readme to reflect gcc to clang change
-rw-r--r-- | readme.md | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2,7 +2,7 @@ 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`. -Assuming you have gcc and make installed, the C implementation can be built with `make build`, then run with `./forth`. +Assuming you have clang and make installed, the C implementation can be built with `make build`, then run with `./forth`. If you also have rlwrap installed, you can run `make run-rlwrap`, to get completions, history, and more pleasant line-editing. |