fix operation translation taking ages

This commit is contained in:
2023-06-18 01:20:21 +01:00
parent 63d7616053
commit 14ae68b9d1
24 changed files with 576 additions and 441 deletions

View File

@@ -1,7 +1,8 @@
f() = do
a = []
for (i from 0 to 100000) a.append(i)
let a = []
for (i from 0 to 10000000) a.append(i)
term.log("start")
f()
term.log("end")
term.log("end")
input()