about summary refs log tree commit diff
path: root/todo/0.src
diff options
context:
space:
mode:
authorBaitinq <[email protected]>2025-01-12 18:35:39 +0100
committerBaitinq <[email protected]>2025-01-12 18:35:39 +0100
commit01a475bd9c9e2249816fc935e7045d78cafdc672 (patch)
treebe5a3941341976c0e972ec281371e54b58bb9abc /todo/0.src
parentAdd support for sum operator (diff)
downloadinterpreter-01a475bd9c9e2249816fc935e7045d78cafdc672.tar.gz
interpreter-01a475bd9c9e2249816fc935e7045d78cafdc672.tar.bz2
interpreter-01a475bd9c9e2249816fc935e7045d78cafdc672.zip
Evaluator: Store variables with value instead of reference
Diffstat (limited to '')
-rw-r--r--todo/0.src5
1 files changed, 0 insertions, 5 deletions
diff --git a/todo/0.src b/todo/0.src
deleted file mode 100644
index 2784a86..0000000
--- a/todo/0.src
+++ /dev/null
@@ -1,5 +0,0 @@
-let x = 1;
-
-x = x;
-
-print(x);