make while loops more efficient and improve expression parsing

This commit is contained in:
r4
2021-12-21 17:09:03 +01:00
parent 10d436107c
commit 9f339ed44d
2 changed files with 78 additions and 68 deletions

View File

@@ -2,7 +2,7 @@ x := 1
y := 1
i := 60
while i {
while i + 1 {
z := x + y
y = x
x = z