9 lines
190 B
Text
9 lines
190 B
Text
set "index" to 0
|
|
. "Assign random values to array"
|
|
: "loop"
|
|
set "array&index&" to random 0 to 99
|
|
inc "index" by 1
|
|
if "index" < 100 then "loop"
|
|
|
|
* "Value of index 50 is ('array('50')')."
|
|
end
|