about summary refs log tree commit diff
path: root/todo
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-01-12 17:43:50 +0100
committerBaitinq <[email protected]>2025-01-12 17:47:51 +0100
commit1a2f5d76b34bbee23bf7a5cb439168442bf6def5 (patch)
tree355cf53c0efcd5853b0e4c0755670b42453dec23 /todo
parentEvaluator: Fix bug when variables are initialized with the same identifier as... (diff)
downloadinterpreter-1a2f5d76b34bbee23bf7a5cb439168442bf6def5.tar.gz
interpreter-1a2f5d76b34bbee23bf7a5cb439168442bf6def5.tar.bz2
interpreter-1a2f5d76b34bbee23bf7a5cb439168442bf6def5.zip
Add support for sum operator
Diffstat (limited to 'todo')
-rw-r--r--todo/0.src5
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);