summary refs log tree commit diff
path: root/todo/0.src
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2025-01-12 17:43:50 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2025-01-12 17:47:51 +0100
commitb3344abfba762b22af1ac80cdf2801ff6eaf3696 (patch)
tree355cf53c0efcd5853b0e4c0755670b42453dec23 /todo/0.src
parentEvaluator: Fix bug when variables are initialized with the same identifier as... (diff)
downloadinterpreter-b3344abfba762b22af1ac80cdf2801ff6eaf3696.tar.gz
interpreter-b3344abfba762b22af1ac80cdf2801ff6eaf3696.tar.bz2
interpreter-b3344abfba762b22af1ac80cdf2801ff6eaf3696.zip
Add support for sum operator
Diffstat (limited to 'todo/0.src')
-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);