diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-12 17:43:50 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2025-01-12 17:47:51 +0100 |
commit | b3344abfba762b22af1ac80cdf2801ff6eaf3696 (patch) | |
tree | 355cf53c0efcd5853b0e4c0755670b42453dec23 /todo/0.src | |
parent | Evaluator: Fix bug when variables are initialized with the same identifier as... (diff) | |
download | interpreter-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.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); |