summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Gunger <kgunger12@gmail.com>2022-04-09 16:20:37 -0400
committerGitHub <noreply@github.com>2022-04-09 16:20:37 -0400
commit3f132f186af8073226e3b88b53d7eebda564554c (patch)
tree00e0c3de81fcf88af2a12b45e706859c307ab71f
parent44d154ad94de20b4c327279c0ee52f4f34fc50c5 (diff)
Update README.md
-rw-r--r--README.md10
1 files changed, 7 insertions, 3 deletions
diff --git a/README.md b/README.md
index 0706721..1210fec 100644
--- a/README.md
+++ b/README.md
@@ -41,9 +41,7 @@ What (seems to) work
- `else` blocks
- File IO
- Print statements
-
-What doesn't work
-- Appending to arrays
+- Appending to arrays `[array variable].append( [value] )`
## Usage
@@ -59,6 +57,12 @@ Once you have built the parser, it can be invoked in the build folder with `./pa
- `-out <file>` tells the parser where to write the data. The default is `out.tnt`.
+The interpreter can be invoked in the build folder with `./tint`. The cli options are as follows:
+
+- `-in <path to file>` Tells the interpreter what file to interpret. This is the only manditory option.
+
+- `-flags <quoted list of arguments>` Arguments to pass to the interpreted program. Should be enclosed in quotes if you use multiple arguments.
+
### Other notes
With some of the code I've written, I'm kinda supprised that this even compiles.