make strings object

This commit is contained in:
2023-03-19 01:10:23 +00:00
parent c725d26c01
commit 2e04bb0152
26 changed files with 528 additions and 124 deletions

10
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")