mirror of
https://github.com/Open-Argon/argon-v3.git
synced 2025-12-06 00:46:07 +00:00
8 lines
170 B
Plaintext
8 lines
170 B
Plaintext
y = []
|
|
for (i from 0 to 1000000) do
|
|
y.append(random())
|
|
if (i % 100000 == 0) term.log(i)
|
|
|
|
term.time("write")
|
|
file.write("array.json").json(y)
|
|
term.timeEnd("write") |