From 6e733910eca3cf871e143d50b2f78b0c83c3e02b Mon Sep 17 00:00:00 2001 From: Maxwell Jeffress Date: Sat, 6 Dec 2025 14:44:59 +1100 Subject: [PATCH] Update README --- README.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/README.md b/README.md index c4526b6..cbab038 100644 --- a/README.md +++ b/README.md @@ -8,6 +8,10 @@ Features of this interpreter: * Somewhat organised and readable codebase * Not super buggy (yet) * 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 @@ -36,5 +40,12 @@ Progress marker: - [x] Comparisions - [ ] Type conversions - [ ] Functions + - [x] Define functions + - [x] Call functions + - [ ] Return values (type checked) + - [ ] Arguments for functions + - [ ] Jumping within functions - [ ] Custom data structures - [ ] Working with external libraries + +