aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md1
1 files changed, 1 insertions, 0 deletions
diff --git a/README.md b/README.md
index cbb907c..8e35312 100644
--- a/README.md
+++ b/README.md
@@ -11,4 +11,5 @@ Run: `sudo make install`. The tsl binary will be installed in /usr/bin/local.
* Remove dependency on `gc`. Write our own gc instead.
* Implement big int, which numbers should automatically switch to when they are too large to fit into double.
* Use a list instead of a hash map for variable lookup in the parser, since the list will be small most of the time.
+* Use a list instead of a hash map for variable lookup in the vm (program.c). Variable load/store will then always be O(1).
* Implement sandboxes similar to lua, by disabling use of import, file io and other functions. \ No newline at end of file