summary refs log tree commit diff
path: root/examples/3.src
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2025-01-12 13:10:52 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2025-01-12 13:10:52 +0100
commit3b97c7c9f1094bbf7704f58f64b70118a5dda6dc (patch)
tree649092f2824a4dbbf0de5acc99e41384b3f6a782 /examples/3.src
parentEvaluator: Add simple test (diff)
downloadinterpreter-3b97c7c9f1094bbf7704f58f64b70118a5dda6dc.tar.gz
interpreter-3b97c7c9f1094bbf7704f58f64b70118a5dda6dc.tar.bz2
interpreter-3b97c7c9f1094bbf7704f58f64b70118a5dda6dc.zip
Misc: Improve error messages and add todos
Diffstat (limited to 'examples/3.src')
-rw-r--r--examples/3.src5
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/3.src b/examples/3.src
new file mode 100644
index 0000000..736ab61
--- /dev/null
+++ b/examples/3.src
@@ -0,0 +1,5 @@
+let ten = 10;
+
+let twelve = ten + 2;
+
+print(twelve);