move to test folder and fix import bug in shell

This commit is contained in:
2023-03-20 00:17:43 +00:00
parent b56c1fc485
commit 4a320008b2
9 changed files with 37 additions and 8 deletions

10
tests/makerandom.ar Normal file
View File

@@ -0,0 +1,10 @@
y = []
i = 0
while (i<1000000) do
y.append(random())
if (i % 100000 == 0) term.log(i)
i = i + 1
term.time("write")
open("array.json", "w").json(y)
term.timeEnd("write")