mirror of
https://github.com/Open-Argon/argon-v3.git
synced 2025-12-06 00:46:07 +00:00
10 lines
181 B
Plaintext
10 lines
181 B
Plaintext
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") |