mirror of
https://github.com/Open-Argon/argon-v3.git
synced 2025-12-06 08:56:07 +00:00
8 lines
123 B
Plaintext
8 lines
123 B
Plaintext
i = 0
|
|
output = []
|
|
|
|
while (i < 1000) do
|
|
output = append(output, i)
|
|
i = i + 1
|
|
|
|
file.write('output.json').json(output) |