renamed language, added operator precedence

This commit is contained in:
2026-07-09 08:21:55 -05:00
parent 3c7cd3c4c7
commit 9a0716ced0
5 changed files with 47 additions and 6 deletions
+8
View File
@@ -0,0 +1,8 @@
let x = 5;
let y = {
let x = 1;
x + 1
};
x + y