Fix parsing error

This commit is contained in:
Jan-Niclas Loosen
2025-11-20 22:09:31 +01:00
parent 7ac8889a1d
commit cb0c7ac2e0
6 changed files with 593 additions and 580 deletions

View File

@@ -1,7 +1,7 @@
let func(a,b) {
do {
while ( a > 0 && b != a ) do {
b = b + 1;
a = a - 1
} while ( a > 0 && b != a )
}
}
in func(10, 8)