Update README

This commit is contained in:
2025-12-06 14:44:59 +11:00
parent 166a547a74
commit 6e733910ec

View File

@@ -8,6 +8,10 @@ Features of this interpreter:
* Somewhat organised and readable codebase * Somewhat organised and readable codebase
* Not super buggy (yet) * Not super buggy (yet)
* Uses standard, portable C* * Uses standard, portable C*
* Actually speedy (typically 3-5x faster than Python, similar results to C)
* 95% more memory efficient than original Ground
* Up to 5x faster than original Ground
* 90% smaller binary than original Ground
Now that Ground's features have mostly been finalised, this interpreter can be built with care to many features not initially planned, like functions and data structures Now that Ground's features have mostly been finalised, this interpreter can be built with care to many features not initially planned, like functions and data structures
@@ -36,5 +40,12 @@ Progress marker:
- [x] Comparisions - [x] Comparisions
- [ ] Type conversions - [ ] Type conversions
- [ ] Functions - [ ] Functions
- [x] Define functions
- [x] Call functions
- [ ] Return values (type checked)
- [ ] Arguments for functions
- [ ] Jumping within functions
- [ ] Custom data structures - [ ] Custom data structures
- [ ] Working with external libraries - [ ] Working with external libraries