From ffde00e86e39455af90b611881496431ee54d0c5 Mon Sep 17 00:00:00 2001 From: Tristan Date: Sat, 31 May 2025 14:16:30 -0400 Subject: [PATCH] readme --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index f78b47a..d46e873 100644 --- a/readme.md +++ b/readme.md @@ -130,7 +130,7 @@ print(`The square of $number is ${math.square($number)}`); - [x] Execution of `PrintStatement` and `ExpressionStatement`. - [ ] Implement evaluation for remaining unary operators (`not`, `some`, `~`). - [ ] Implement evaluation for binary comparison (`<`, `<=`, `>`, `>=`), equality (`==`, `!=`), and logical (`and`, `or`) operators. - - [x] **Environment for Variables**: Implement variable declaration (`let`), assignment (`=`), and lookup (`identifier`). + - [x] **Environment for Variables**: Implement variable declaration (`let`), assignment (`=`), and lookup (`identifier`). (Partially working) - [ ] **Control Flow Execution**: `if/else`, `while`, `for`. - [ ] **Function Execution**: Handling function calls, parameter passing, environments/scopes, and `return` statements. - **Compiler**: