diff options
author | Kyle Gunger <kgunger12@gmail.com> | 2022-07-13 21:15:39 -0400 |
---|---|---|
committer | Kyle Gunger <kgunger12@gmail.com> | 2022-07-13 21:15:39 -0400 |
commit | 64d8a228f4407bddea8be60e4657f04a49b1c35a (patch) | |
tree | 78144d912482aa611b569566eb1a31b79b9c3eb2 /README.md | |
parent | 867277f54303aa6a41413ab8fa8d226568bc1f4e (diff) |
Update readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -9,13 +9,13 @@ After that, work can begin on the real parser/compiler which will be written in This project was originally supposed to form a go based compiler for the language, but in the interest of time, it seems more efficient to build an interpreter instead so we can work on the TNSL based compiler sooner. -To build the parser: +To build both for linux: - ./gobuild.sh parse + ./gobuild.sh linux -To build the interpreter: +To build just one: - ./gobuild.sh tint + ./gobuild.sh linux <tint / parse> Binaries will be dumped in the "build" folder. |