diff options
| author | Baitinq <[email protected]> | 2025-01-12 17:43:50 +0100 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-01-12 17:47:51 +0100 |
| commit | 1a2f5d76b34bbee23bf7a5cb439168442bf6def5 (patch) | |
| tree | 355cf53c0efcd5853b0e4c0755670b42453dec23 /todo | |
| parent | Evaluator: Fix bug when variables are initialized with the same identifier as... (diff) | |
| download | interpreter-1a2f5d76b34bbee23bf7a5cb439168442bf6def5.tar.gz interpreter-1a2f5d76b34bbee23bf7a5cb439168442bf6def5.tar.bz2 interpreter-1a2f5d76b34bbee23bf7a5cb439168442bf6def5.zip | |
Add support for sum operator
Diffstat (limited to 'todo')
| -rw-r--r-- | todo/0.src | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/todo/0.src b/todo/0.src new file mode 100644 index 0000000..2784a86 --- /dev/null +++ b/todo/0.src @@ -0,0 +1,5 @@ +let x = 1; + +x = x; + +print(x); |