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 /examples | |
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 'examples')
-rw-r--r-- | examples/3.src | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/examples/3.src b/examples/3.src index 736ab61..042edea 100644 --- a/examples/3.src +++ b/examples/3.src @@ -1,5 +1,3 @@ -let ten = 10; +let sixteen = 10 + 2 + 4; -let twelve = ten + 2; - -print(twelve); +print(sixteen); |