Skip to content
This repository has been archived by the owner on Oct 13, 2024. It is now read-only.

Commit

Permalink
📝 Update TODO.md for Compound Assignment Operator
Browse files Browse the repository at this point in the history
  • Loading branch information
SahilK-027 committed Sep 29, 2023
1 parent ebb3e5b commit 27f6da1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*/
Expand Down

0 comments on commit 27f6da1

Please sign in to comment.