fix resolving of vars

This commit is contained in:
Sebastian Hugentobler 2025-05-28 09:21:59 +02:00
parent 463e4abd30
commit 94b57f8304
Signed by: shu
SSH key fingerprint: SHA256:ppcx6MlixdNZd5EUM1nkHOKoyQYoJwzuQKXM6J/t66M
6 changed files with 66 additions and 53 deletions

View file

@ -1,7 +1,6 @@
var a = 0;
var temp;
var b = 1;
for(var b = 1; a < 1000; b = temp + b) {
print a;
temp = a;