We have blocks & scopes

This commit is contained in:
2026-07-08 05:22:32 -05:00
parent 4aa9341bf3
commit 3c7cd3c4c7
5 changed files with 88 additions and 15 deletions
+8
View File
@@ -0,0 +1,8 @@
let x = 5;
let y = {
let x = 1;
x + 1
};
x + y