diff --git a/TODO.md b/TODO.md index 3fa0dcb..a393293 100644 --- a/TODO.md +++ b/TODO.md @@ -18,14 +18,13 @@ - [x] Implement user defined functions - [x] Write test cases - [x] Documentation +- [x] For loop new syntax ## Increment - -- [x] For loop new syntax +- [x] Add support for `+=` `-=` `*=` `/=` `%=` `^=` operator ## Backlog - [ ] Implement objects - [ ] Implement error handling - [ ] Optimize performance -- [ ] Add support for `+=` `-=` `*=` `/=` `%=` `^=` operator diff --git a/main.ts b/main.ts index 24af285..7c3098c 100644 --- a/main.ts +++ b/main.ts @@ -13,7 +13,7 @@ async function __run(inputFile: string) { const program = parser.produceAST(input); evaluate(program, env); } -__run("./feat.avenger"); +__run("./test.avenger"); /** * Initializes the script execution. */