Fixed unary minus

This commit is contained in:
2026-07-09 10:17:31 -05:00
parent 9a0716ced0
commit a34bbba4b1
6 changed files with 62 additions and 14 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
let x = 5;
let y = {
let x = 1;
x + 1
let x = -x;
x + 1 * -x
};
x + y